4

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.

Rafid
  • 61

1 Answers1

3

Quote from the ↗Introduction of the animate package manual:

PDF files with animations can be viewed in Acrobat Reader (except on mobile devices), PDF-XChange and Foxit Reader.

Animations rely on ↗JavaScript for Acrobat, which is currently implemented only in a small number of (Desktop) PDF viewers. For Evince (Gnome document viewer), JavaScript support appears somewhere at the end of their ↗Roadmap.

AlexG
  • 54,894