Code: Select all
LaTeX Error: Unknown graphics extension: .eps.
Code: Select all
\documentclass{article}
\usepackage{graphics}
\begin{document}
\includegraphics{sears1a.eps}
\end{document}
Code: Select all
LaTeX Error: Unknown graphics extension: .eps.
Code: Select all
\documentclass{article}
\usepackage{graphics}
\begin{document}
\includegraphics{sears1a.eps}
\end{document}
An it worked!It seems you're using graphics in the EPD format. A relatively easy way of solving this problem is loading\usepackage{epstopdf}
in your preamble and compiling with pdfLaTeX as usual. This will convert any EPS graphics to PDF first, you'll see the actual PDF files in your directory.
latex
compiles to DVI, which you can convert afterwards to PS and PDF. pdflatex
directly compiles to a PDF, no need for converting anymore.-shell-escape
enabled.Code: Select all
\usepackag{epstopdf}