你好,LaTeX 社区,
我目前正在使用 scrbook 类处理文档,并尝试合并多个 .png 图像的动画。我有 20 幅图像,按顺序从 frame0.png 到 frame19.png 命名,我想在我的 LaTeX 文档中为它们制作动画。
我一直在尝试使用带有以下代码的 animate 包:
\documentclass{scrbook}
\usepackage{graphicx} % Required for inserting images
\usepackage{animate}
\title{animationTest}
\author{Frisbee}
\date{December 2023}
\begin{document}
\section{Introduction}
\begin{center}
\animategraphics[autoplay,loop,width=\textwidth]{10}{frame}{0}{19}
\end{center}
\end{document}
我也尝试过将 animateinline 与 .pdf 文件一起使用,但目前还没有成功。
\documentclass{scrbook}
\usepackage{graphicx} % Required for inserting images
\usepackage{animate}
\title{animationTest}
\author{Frisbee}
\date{December 2023}
\begin{document}
\maketitle
\section{Introduction}
Here is the animation:
\begin{center}
\begin{animateinline}[autoplay,loop]{10}
\multiframe{20}{i=0+1}{
\includegraphics[width=\textwidth]{frame\i.pdf}
}
\end{animateinline}
\end{center}
\end{document}
在这两种情况下,都正在加载一张图片,当我将鼠标悬停在图片上时,它会亮起黄色,就像它具有某种交互一样,但没有显示动画。
我正在使用 overleaf 并使用 mac 预览打开了 latex pdf 文件。
提前致谢!