I made an animation with the animate package and I want to integrate it into a Beamer presentation, and I only get a blank page. Can you tell me how to integrate an external animation into a Beamer presentation.
Here are two files to test, compile first the animation.tex ====Animation.tex===
\documentclass{standalone}
\usepackage{animate}
\usepackage{tikz}
\usetikzlibrary{lindenmayersystems}
\pgfdeclarelindenmayersystem{A}{%
\symbol{F}{\pgflsystemstep=0.6\pgflsystemstep\pgflsystemdrawforward}
\rule{A->F[+A][-A]}
}
\begin{document}
\begin{animateinline}[controls,autoplay,loop]{2}
\multiframe{8}{n=1+1}{
\begin{tikzpicture}[scale=10,rotate=90]
\draw (-.1,-.2) rectangle (.4,0.2);
\draw [blue,opacity=0.5,line width=0.1cm,line cap=round]
l-system [l-system={A,axiom=A,order=\n,angle=45,step=0.25cm}];
\end{tikzpicture}
}
\end{animateinline}
\end{document}
=======
Beamer file
=======
\documentclass{beamer}
\begin{document}
\begin{frame}
first frame
\end{frame}
\begin{frame}
animation
\includegraphics{animation.pdf}
\end{frame}
\begin{frame}
last frame
\end{frame}
\end{document}
========
.swfand include the.swf? See http://tex.stackexchange.com/a/117563/36296 for the conversion. – samcarter_is_at_topanswers.xyz Feb 13 '17 at 16:26