0

I have a series of eps images that I would like to display in a sequence of slides in a Beamer presentation. The result would be like a stop motion animation effect. The images are titled image1.eps to image50.eps. I can obviously do this with a sequence of 50 identical slides, differing only in the index on the image file, but I wanted to see if it's possible to automate the process somehow.

Leucippus
  • 1,636
  • Welcome! Try \documentclass{beamer} \usepackage{pgffor} \begin{document} \foreach \X in {1,...,50} {\begin{frame}[t,plain] \begin{center} \includegraphics[width=0.9\textwidth]{image-\X.eps} \end{center} \end{frame}} \end{document}. –  Apr 27 '20 at 03:56
  • I do not mean to advertise for one of my posts, but the answer proposed by Daniel here helped me a lot. Specifically the second part. It is pretty close to Schrödinger's cat proposal, the only difference being it uses overlays and not new frames. – BambOo Apr 27 '20 at 17:09
  • This does exactly what I needed. Thanks! – Ernie Solheid Apr 27 '20 at 20:43

0 Answers0