动画图形和每帧多个文件

动画图形和每帧多个文件

我可以使用 制作动画 PDF \animatedgraphics。但我有 4 个情节系列,每个 10 个,我想让它们一起制作动画。

这意味着所需的输出将具有 10 帧动画图形,每帧包括 2x2 网格中的 4 个图。

来自手动的它似乎\animateinline必须完成这项工作,但我不知道该怎么做。

这是我尝试过的:

\begin{frame}
\begin{animateinline}{2}
  \multiframe{9}{ia=1+1, ib=2+2}{
    \strut
    \noindent\null\hfill\includegraphics[width=0.4\textwidth]{a\ib} \hfill
    \includegraphics[width=0.4\textwidth]{b\ib} \hfill\null

    \noindent\null\hfill\includegraphics[width=0.4\textwidth]{c\ia} \hfill
    \includegraphics[width=0.4\textwidth]{d\ia} \hfill\null
  }
\end{animateinline}
\end{frame}

答案1

我设法通过这种方式获得我想要的输出:

\begin{frame}
\begin{animateinline}{2}
  \multiframe{9}{ia=1+1, ib=2+2}{
\begin{tabular}{cc}
    \includegraphics[width=0.4\textwidth]{a\ib} &
    \includegraphics[width=0.4\textwidth]{b\ib} \\

    \includegraphics[width=0.4\textwidth]{c\ia}  &
    \includegraphics[width=0.4\textwidth]{d\ia} \\
\end{tabular}
  }
\end{animateinline}
\end{frame}

相关内容