我尝试了不同的方法,但都不起作用:
\animategraphics
- 我收到了一长串奇怪的错误,是的,我有 png 格式的图像\multiinclude
- 它将每张图片放在不同的页面上,而不是将图片制作成 GIF。- 我尝试转换成视频,但还是没成功
代码:
\documentclass{beamer}
\usepackage{multimedia}
\begin{document}
\begin{frame}
\movie[loop]{\includegraphics[width=\columnwidth]{imagine-0}}{gif3.gif}
\end{frame}
\end{document}
我也尝试过:
\documentclass{beamer}
\usepackage{animate}
\begin{document}
\begin{frame}
\animategraphics[loop,width=12cm]{10}{gif3-}{0}{12}
\end{frame}
\end{document}
它不起作用。
答案1
一个相当可靠的解决方案是将 gif 转换为一系列图像。正如您正确写的那样,每个图像随后被单独放置在页面上 - 但请注意,帧号不会改变。页面之间的切换也可以自动完成,例如,使用animategraphics
包中的命令animate
。