图像无法使用 textattachfile 打印

图像无法使用 textattachfile 打印

当将包含图形放入来自attachfile2包的textattachfile中时,使用acrobat reader时图像不会出现在打印预览或实际打印中。是否可以将其打印出来而不需要借助在线版本和打印版本?

最小示例:

\documentclass[]{article}
\usepackage{attachfile2,graphicx}

\begin{document}
    \textattachfile{image.png}{\includegraphics{image.png}}
\end{document}

答案1

由于设置了打印标志,因此不打印似乎是 AR 中的一个错误。

作为解决方法,可以将图像放在外面\textattachfile

\documentclass[]{article}
\usepackage{attachfile2,graphicx}

\begin{document}
  \leavevmode
  \rlap{\includegraphics{image.png}}%
  \textattachfile{image.png}{\phantom{\includegraphics{image.png}}}
\end{document}

相关内容