I've made a sequence of 30 vector graphics in one PDF file. (Each page of the PDF file contains one graphic). I want to make an animation and display it in a beamer presentation.
I've found an answer to a similar question in this forum which uses the "animate" package but it doesn't work for me I don't know why.
The code run without any error but the display is only a blank page. I've tried to use "\includegraphics" just to be sure that the file is readable by the Texmaker and it displayed the first page of the PDF file.
This is my code (The file name is "CYCLE"):
\documentclass{beamer}
\usepackage{animate}
\begin{document}
\begin{frame}
\begin{center}
\animategraphics[autoplay,loop,scale=0.35]{3}{CYCLE}{}{}
\end{center}
\end{frame}
\end{document}
Thank you.
animatebased animations you need a pdf viewer capable of flash, such as adobe reader – samcarter_is_at_topanswers.xyz May 17 '18 at 22:13impressivemyself, but in case it supports automatic slide transitions, you could try this technique: https://tex.stackexchange.com/a/240247/36296 – samcarter_is_at_topanswers.xyz May 17 '18 at 23:10