有些人不断向我发送带有难看水印的 Word 文档并希望我也使用它们。
我能否在文档中添加“水印”,使其至少在使用 Acrobat Reader XI 查看时在背景中旋转?
\documentclass{scrartcl}
\usepackage{draftwatermark, graphicx}
\SetWatermarkText{\includegraphics[angle=-45]{image}}
\begin{document}
bla
\end{document}
如果您需要 JavaScript,没问题,如果我可以将其嵌入到 PDF 中...我想要做的是让 PDF 打开时“图像”旋转,大概每 2 秒一帧。
不可能吧?大概!?
答案1
您可以使用动画包,但要获取背景中的图形,您需要“ocg”方法:
\documentclass{scrartcl}
\usepackage{graphicx}
\usepackage[method=ocg]{animate}
\usepackage{eso-pic,background,color}
\DeclareRobustCommand\animatedbackground{%
\begin{animateinline}[autoplay,loop]{3}
\includegraphics[width=5cm,angle=45]{example-image}
\newframe
\includegraphics[width=5cm,angle=90]{example-image}
\newframe
\includegraphics[width=5cm,angle=135]{example-image}
\end{animateinline}}
%works too
%\AddToShipoutPictureBG
%{\AtPageCenter{\animatedbackground}}
\backgroundsetup{contents=\animatedbackground,scale=1}
\usepackage{blindtext}
\begin{document}
\blindtext[10]
\end{document}
我让你去构建一个合理的循环内容。