animate 包找不到 png 文件

animate 包找不到 png 文件

我使用Ubuntu 22.04TeX 3.141592653 (TeX Live 2022)

我想嵌入“GIF”文件作为输出 PDF 文件中的动画。我遵循邮政:

  1. $ convert ./Fourier_series_and_transform.gif -coalesce Fourier.png本产品有 93 个 PNG 文件:从Fourier-0.pngFourier-92.png

  2. 写于Untitled-4.tex

    \documentclass{standalone}
    \usepackage{graphicx}
    \usepackage[step]{animate}
    
    \begin{document}
    \animategraphics[width=\linewidth]{12}{Fourier-}{0}{92}%
    \end{document}
    
  3. 构建文档:$ latex ./Untitled-4.tex

但我遇到了这个错误:

! Package animate Error: None of the files
(animate)                `Fourier-0.eps',
(animate)                `Fourier-0.mps' or
(animate)                `Fourier-0.ps'
(animate)                could be found.
(animate)                Wrong file type? Mis-spelled file name?.

我该如何解决这个问题?

相关内容