使用 \animategraphics 为多个 .eps 文件 (>2000) 制作动画

使用 \animategraphics 为多个 .eps 文件 (>2000) 制作动画

我正在尝试为一组 .eps 文件(>2000 张图像)制作动画,这将为我提供漂亮的动画,但是当我使用 MWE 将其包含到我的 latex 文档中时,它没有给我任何东西,但有一些错误。但是当我将相同的文件用于 .png 文件时,它可以工作,有人能帮我吗?(文件名为 (picture-1.eps,...,picture2000.eps),这些图是从 matlab 获得的,用于实验)

\documentclass{article}

\usepackage{graphicx}

\usepackage{animate}

\begin{document}

 \begin{figure}[H]

\animategraphics[loop,autoplay,width=\textwidth,height=.5\textheight]{12}{picture-}{1}{2000}

\end{figure}

\end{document}

答案1

正如 darthbith 提到的,将 .eps 中的图像转换为 pdf/png 并将其加载到 pdflatex 中以显示图形。

相关内容