! 动画包错误:\animategraphics 命令中缺少帧号

! 动画包错误:\animategraphics 命令中缺少帧号

我有一个包含 8 帧的文档,我想将其作为动画人物包含在我的文档中,但是当我使用此命令时beamer出现错误(! Package animate Error: Missing frame number in \animategraphics command.)

\animategraphics[width=0.5\textwidth , autoplay,loop]{1}{xxx.pdf}{}{}

当我使用此命令时\includegraphics[scale=0.75]{CEOC400036.pdf},它只输出一帧。

答案1

删除文件扩展名.pdf,如本例中包example-image-a4-numbered.pdf中的多页 PDF 文件mwe

\documentclass{article}
\usepackage{animate,graphicx}


\begin{document}

  \animategraphics[width=0.5\textwidth,autoplay,loop]{1}{example-image-a4-numbered}{}{}

\end{document}

相关内容