LaTeX で animate パッケージを使用して PNG 画像のシーケンスをアニメーション化する際の問題

LaTeX で animate パッケージを使用して PNG 画像のシーケンスをアニメーション化する際の問題

こんにちは、LaTeXコミュニティの皆さん、

現在、scrbook クラスを使用してドキュメントを作成しており、複数の .png 画像のアニメーションを組み込もうとしています。frame0.png から frame19.png まで順番に名前が付けられた 20 枚の画像があり、これらを LaTeX ドキュメントでアニメーション化したいと考えています。

私は次のコードで animate パッケージを使用しようとしています:

\documentclass{scrbook}
\usepackage{graphicx} % Required for inserting images
\usepackage{animate}
\title{animationTest}
\author{Frisbee}
\date{December 2023}

\begin{document}

\section{Introduction}
\begin{center}
    \animategraphics[autoplay,loop,width=\textwidth]{10}{frame}{0}{19}
\end{center}
\end{document}

.pdf ファイルで animateinline も試しましたが、今のところうまくいきません。

\documentclass{scrbook}
\usepackage{graphicx} % Required for inserting images
\usepackage{animate}

\title{animationTest}
\author{Frisbee}
\date{December 2023}

\begin{document}

\maketitle

\section{Introduction}

Here is the animation:

\begin{center}
  \begin{animateinline}[autoplay,loop]{10}
    \multiframe{20}{i=0+1}{
      \includegraphics[width=\textwidth]{frame\i.pdf}
    }
  \end{animateinline}
\end{center}

\end{document}

どちらのシナリオでも、1 つの画像が読み込まれ、その画像の上にマウスを移動すると、何らかの操作があるかのように黄色に点灯しますが、アニメーションは表示されません。

私はOverleafを使用しており、LaTeX PDFファイルをMacプレビューで開きました。

前もって感謝します!

関連情報