I'm trying to include .eps figures in my .tex file (I'm using MiKTeX 2.9). I need to include graphics in this particular way:
\usepackage{graphics} % or graphicx
...
\begin{figure}
\caption{\label{tha_label} ....}
\includegraphics{the_graphics.eps}
\end{figure}
But that way doesn't work, because it produces the error Unknown graphics extension: .eps. Of course, I can use \uspackage{eps-to-pdf} and include my graphics without errors, but I do not need to use that usepackage (the method above is only allowed). How can I do it?
\includegraphics{the_graphics.eps}(that is a good idea anyway) and then make a .pdf version of teh eps before running pdflatexps2pdf the_graphics.epsthen latex/dvips will use the .eps file and pdflatex will use the .pdf – David Carlisle Mar 17 '14 at 13:47