texlive 17 中的动画显示“缺失数字,视为零”。

texlive 17 中的动画显示“缺失数字,视为零”。

我有一台新的 Ubuntu 18 机器,从 Ubuntu 软件包中全新安装了 texlive 2017。以下代码曾经在早期的 texlive 版本上运行,但现在甚至无法编译(使用 pdflatex)。它在 \animategraphics 命令上因“!缺少数字,视为零”而中断。有什么建议吗?

\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\usepackage[autoplay,loop,width=textwidth]{animate}
\begin{document}
\animategraphics{20}{img/64_QAM_}{00}{99}
\end{document}

答案1

width=textwidth错了,应该是width=\textwidth

\usepackage[autoplay,loop,width=\textwidth]{动画}

相关内容