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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis