I am using the theme here: http://cameron.bracken.bz/beamer-template
When I include a figure as:
\begin{frame}{frame 2}
\includegraphics[scale=.2]{beta_1.eps}
\end{frame}
and run pdfLatex, I get the following error:
! Latex Error: unknown graphics extension .eps
What is going on and how do I fix this? I am using WinEdt as the front end and I am on a windows machine. The picture is in the same folder as the source file and there are no typos etc. Compiles as "Latex" and "Texify", but I don't see the bubbles on the heading bar.
pdflatexyou can't useepsdirectly. Change the graphics format topdf,pngorjpg. – Mensch Oct 31 '12 at 22:27for %f in (*.eps) do \imagemagic\convert %f %f.pdf– David Carlisle Oct 31 '12 at 22:43