I see there are several questions about inserting animations into tex beamers. I have tried several of the suggested methods, but always get the same output: a png per slide instead of one slide with an animation.
\documentclass{beamer}
\usepackage{animate}
\usepackage{xmpmulti}
\usepackage{tikz}
\begin{document}
\begin{frame}{Embedded Animation}
\transduration<0-8>{0}
\multiinclude[<+->][format=png, graphics={width=\textwidth}] {pres_plots/images/flumap}
\end{frame}
\begin{frame}
\begin{center}
\begin{tikzpicture}
\foreach \Value in {1,2,3,4,5,6,7,8}
\node<\Value> (pres_plots/images/flumap-\Value){\includegraphics[width=.5\linewidth]{pres_plots/images/flumap-\Value}};
\end{tikzpicture}
\end{center}
\end{frame}
\begin{frame}
\begin{center}
\includegraphics<1>[width=.5\linewidth]{pres_plots/images/flumap-0}
\includegraphics<2>[width=.5\linewidth]{pres_plots/images/flumap-1}
\includegraphics<3>[width=.5\linewidth]{pres_plots/images/flumap-2}
\end{center}
\end{frame}
\end{document}
Any suggestions?
\transduration<0-3>{0}. The second one probably as well, but I did not test this one. – samcarter_is_at_topanswers.xyz Aug 17 '17 at 15:01