애니메이션 패키지를 사용하여 LaTeX에서 PNG 이미지 시퀀스에 애니메이션을 적용하는 데 문제가 있습니다.

애니메이션 패키지를 사용하여 LaTeX에서 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}

두 시나리오 모두 하나의 이미지가 로드되고 있으며 이미지 위로 마우스를 가져가면 일종의 상호 작용이 있지만 애니메이션이 표시되지 않는 것처럼 노란색으로 켜집니다.

저는 overleaf로 작업 중이며 Mac 미리보기로 라텍스 PDF 파일을 열었습니다.

미리 감사드립니다!

관련 정보