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.
Asked
Active
Viewed 52 times
0
Leucippus
- 1,636
Ernie Solheid
- 11
- 1
\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:56frames. – BambOo Apr 27 '20 at 17:09