
TikZ を使用して描いた 2 つの画像があります。それらを 2 つの異なるフレームに配置すると、beamer
完璧に表示されます。ただし、それらをアニメーション化したい、つまり、マウスをクリックするたびに 1 つの画像が次々に表示されるようにしたいのです。
これを書いたのですが、出力として最初の画像しか得られません。
\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}