我正在使用 animate 包从在 R 中创建的几个 pdf 制作一些漂亮的动画。我的 beamer 演示文稿中有 3 个动画,但现在我尝试插入第四个动画,但出现错误:
Missing $ inserted \end{frame}.
如果我用其他动画替换这种新动画,它就会起作用。我使用的代码是
\begin{frame}{Deaths 1997-2013}
\centerline{\animategraphics[controls,buttonsize=0.3cm,width=7.5cm]{5}{"AP_inc_"}{1997}{2013}}
\end{frame}
并且只有这组 pdf 会出现错误。有人能帮帮我吗?
答案1
AP_inc_????.pdf
必须指定文件基名(不带帧号和扩展名的文件名),且不带引号:
\animategraphics[controls,buttonsize=0.3cm,width=7.5cm]{5}{AP_inc_}{1997}{2013}