I want to animate a series of images in my document, but I get the following error:
! Package animate Error: None of the files(animate) Monkey-0.pdf',(animate)...
and this is my code:
\documentclass{article}
\usepackage{animate}
\usepackage{tikz}
\begin{document}
\animategraphics[autoplay,loop]{1}{Monkey-}{0}{59}
\end{document}
I don't understand what I'm doing wrong since the files are in the folder and I'm not adding the extension inside the command. (I'm using TexMaker)
\animategraphics...with\includegraphics{Monkey-0}? Make sure the real filename is spelled exactly as in the inclusion command and the extension is lower case. Filenames in TeX are case sensitive. – AlexG May 12 '17 at 06:47Monkey-0.pngorMonkey-0.PNG?\animategraphicswants the former. – AlexG May 12 '17 at 19:15Monkey-0.pdf,Monkey-1.pdf,Monkey-2.pdf(files). Tested with\animategraphics[autoplay,loop]{1}{Monkey-}{0}{2}. So i can't reproduce your error. Have you checked the file extension? – Bobyandbob May 22 '18 at 09:42