当我将动画(动画包)放入表格中时,我收到一些奇怪的错误。这是 MWE:
\documentclass{article}
\usepackage{animate}
\begin{document}
\begin{tabular}{l}
\animategraphics{12}{Anim/debut}{1}{22}
\end{tabular}
\end{document}
这给了我一个不完整的 \ifx 错误。
另一方面,表格外的动画和空表格运行良好。
更让我困惑的是,这个 MWE 在运行 TeX Live 2009/Debian 的 Linux 和运行旧版本 MikTeX 的 Windows Seven 笔记本电脑上编译没有任何问题。此错误仅发生在我的 Windows 8、MikTeX 2.9、pdflatex 1.40.13 上
答案1
此问题出现在较新的 Animate 版本中。将在下一版本中修复。作为解决方法,请尝试:
\documentclass{article}
\usepackage{animate}
\begin{document}
\begin{tabular}{l}
{\animategraphics{12}{Anim/debut}{1}{22}}
\end{tabular}
\end{document}