我在 Fedora 29 中使用 TexStudio。这段代码似乎编译正确,但如果我单击超链接,嵌入的 pdf 不会打开……
\documentclass{article}
\usepackage{embedfile}
\usepackage{hypgotoe}
\embedfile{myfile.pdf}
\begin{document}
\href{gotoe:embedded=myfile.pdf}{description}
\end{document}
似乎有类似的问题,解决方案是它“依赖于 PDF 查看器”。这对我没有多大帮助。我无法在我的发行版上安装 Adobe Acrobat。使用 Evince、Foxit 和 Atril 时它不起作用。Ocular 似乎检测到嵌入文件(并要求我保存它们),但没有打开超链接。有什么想法我可以做些什么来查看我单击超链接词时的那些嵌入?
答案1
答案2
有一个名为的替代包attachfile
可能更适合您的用例。
\begin{filecontents*}{myfile.txt}
Text.
\end{filecontents*}
\documentclass{article}
\usepackage{attachfile}
\begin{document}
\textattachfile{myfile.txt}{Click here to access myfile.txt}
\end{document}