[Tex/LaTex] including .eps figures

epsgraphicsmiktex

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?

Best Answer

Try using these commands in the cmd:

latex filename.tex
dvipdfm filename

I've compiled the codes

\documentclass{report}
\usepackage{graphics} % or graphicx 
\begin{document}
\begin{figure}
...
 \end{figure}
\end{document}

and they worked.

Related Question