使用 beamer 为 tikz 图片制作动画

使用 beamer 为 tikz 图片制作动画

我有两张使用 TikZ 绘制的图片。当我将它们放在两个不同的框架中时,beamer它们完美地显示出来。但我想为它们添加动画效果,也就是说,我希望通过鼠标单击来连续显示两张图片。

我已经写了这个但我只得到了第一张图片作为输出。

\documentclass{beamer}
\mode<presentation>{\usetheme{Warsaw}}

\usepackage{adjustbox}
\usepackage{animate}
\usepackage{comment}
\usepackage{pgfplots}

\pgfplotsset{compat=newest}
\usetikzlibrary{pgfplots.groupplots}
\usetikzlibrary{positioning}

\begin{document}
  \begin{frame}
     \begin{animateinline}{2}
        \begin{tikzpicture}
           .........
        \end{tikzpicture}
      \newframe*
     \begin{tikzpicture}
           .........
     \end{tikzpicture}
\end{animateinline}  
\end{frame}

相关内容