使用 animate 包来获取不在根目录中的 gif

使用 animate 包来获取不在根目录中的 gif

我已经将 gif 转换为一系列 pdf 文件,现在我想使用 animate 包将名为 exp_%d.pdf 的 pdf“图像”嵌入到我的 LaTeX pdf 中。但是,pdf 文件的源位于比我尝试从中访问它们的 .tex 文件更深的一个文件夹(在文件夹“gifs”中)。我将如何使用这些 pdf。作为参考,这是我现在使用的 LaTeX。

\begin{figure}[H]
    \centering
    \animategraphics[height=1.4in,autoplay,controls,loop]{10}{gifs/exp_}{0}{280}
\end{figure}

答案1

使用\graphicspath

\documentclass{article}

\usepackage{animate,graphicx}
\graphicspath{{gifs/}}

\begin{document}

    \animategraphics[height=1.4in,autoplay,controls,loop]{10}{exp_}{0}{280}

\end{document}

相关内容