如何逐帧制作动画?

如何逐帧制作动画?

我在 beamer 中有三个帧,其中包含我想在一帧中以动画形式显示的图像(必须有下面的动画工具箱,就像所附图片一样)。这是 MWE:

\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\includegraphics[width=8cm,height=6cm]{1.png}
\end{frame}
\begin{frame}
\includegraphics[width=8cm,height=6cm]{2.png}
\end{frame}
\begin{frame}
\includegraphics[width=8cm,height=6cm]{3.png}
\end{frame}
\end{document}

我以前从未在 Beamer 中使用过动画。有什么帮助或建议吗?

在此处输入图片描述

答案1

如果您必须有一个“动画工具箱”,那么动画包就是您的朋友:

\documentclass{beamer}
\usepackage{animate}
\begin{document}
\begin{frame}
\animategraphics[controls,step]{12}{}{1}{3}
\end{frame}
\end{document}

(非常感谢@AlexG 对该step选项提供的有用提示!)

相关内容