Latex Animate 包 - 动画包错误:没有任何文件

Latex Animate 包 - 动画包错误:没有任何文件

我正在尝试制作带有动画的 Beamer 类。这是我当前的代码。它只添加了一个帧,动画由 75 个 png 帧组成,名为“out-0.png”到“out-74.png”。

\documentclass{beamer}
\beamertemplatenavigationsymbolsempty

\usepackage{animate}



\begin{document}


\begin{frame}{Anim1}
\animategraphics[loop,controls,width=\linewidth]{12}{wylot/out-}{0}{74}
\end{frame}

\end{document}

首先,我尝试在 Overleaf 编辑器上运行代码,使用 pdfLaTeX 作为编译器 - 代码本身可以运行,但后来我需要添加一些大型动画,而 Overleaf 却超时了。我尝试将项目下载到我的电脑上,并使用安装了 Miktex 的 pdfLaTeX(pdfTeX,版本 3.141592653-2.6-1.40.22(MiKTeX 21.6))对其进行编译。这次,编译器显示此错误:

! Package animate Error: None of the files
(animate)                `wylot/out-0.eps',
(animate)                `wylot/out-0.mps' or
(animate)                `wylot/out-0.ps'
(animate)                could be found.
(animate)                Wrong file type? Mis-spelled file name?.

See the animate package documentation for explanation.

我该如何修复这个问题,为什么动画不允许这里使用 png 文件?

答案1

好吧,这是我一生中回答得最快的问题。我确实用的是 latex,而不是 pdflatex——我很困惑,因为运行这两个命令后,它们都显示相同的“这是 pdfTeX,版本 3.141592653-2.6-1.40.22 (MiKTeX 21.6)”,但使用命令 pdflatex 却编译成功。谢谢。

相关内容