\attachfile 在最终 PDF 中添加注释而不是附件

\attachfile 在最终 PDF 中添加注释而不是附件

我想要将文件附加到使用 XeLaTeX 生成的最终 PDF 中,因此我使用了以下 MWE:

\documentclass{article}
\usepackage{attachfile2}


\begin{document}
  \attachfile{foo.txt}{bar}
\end{document}

但是,编译之后,我得到的不是附件,而是注释:

Evince 屏幕截图显示了生成的 PDF 中“bar”附近的注释

如您所见,我的命令产生了注释,但文件内容却不见了。

那么,如何在attachfile2包中添加附件而不是注释?

答案1

使用 embedfile 包:

\documentclass{article}
\usepackage{embedfile}
\begin{document}
\embedfile{test-ansi.tex} text
\end{document}

在此处输入图片描述

相关内容