LaTeX How to Include EPS Figures in Latex?

  • Thread starter Thread starter DukeLuke
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
Including an EPS file in a LaTeX document can lead to compilation errors, particularly with the pdflatex command, which does not support EPS files directly. Users have reported receiving an "Unknown graphics extension: .eps" error when attempting to include EPS graphics using the \includegraphics command. To successfully include EPS files, it is recommended to use the latex command followed by dvips to convert the output to PostScript, and then use Ghostscript to convert the PostScript file to PDF. Additionally, TeXnicCenter offers a Latex=>PS=>PDF option that simplifies this process. This approach allows for the correct inclusion of EPS graphics in LaTeX documents.
DukeLuke
Messages
92
Reaction score
0
I want to include a graph in eps file format in a Latex paper and I'm having some trouble. I have read a few online tutorials, but I can't seem to make any headway. I started by putting the eps file to be included in the same folder that my latex document is saved to. Then I included \usepackage{graphicx} in my preamble. I then tried to use \includegraphics{woodSaxon.eps} where woodSaxon is the name of the file I wanted to include. This gave me a Latex compiler error entitled "Unknown graphics extension: .eps". Does anyone know what my problem is? Thanks,
 
Physics news on Phys.org
what is your latex command?

is it pdflatex ...?
does latex ... work?
 
Thanks for the response. I'm not sure I know what you mean when you say latex command. If you’re referring to experience using latex, then this is the first time I have attempted to include graphics. I have created papers just containing equations and text that turned out fine. My output is pdf, if that specifies pdflatex. My whole document looks fine when I create a pdf, I just can't get it to compile when I try to include the image because of the error I described in the first post. If it helps I'm using Texnic Center with Miktex 2.7.
 
apparently, pdflatex doesn't work well with .eps files directly (e.g. http://golem.ph.utexas.edu/~distler/blog/archives/000425.html )

I don't use pdflatex myself.
What I do is (using MiKTeX)
latex myfile ; dvips myfile ; then I use ghostscript to convert the .ps to .pdf
(all of this in a little shell script)
 
Turns out TeXnicCenter has a Latex=>PS=>PDF option that did the trick. Thanks for the help.
 

Similar threads

Replies
3
Views
2K
Replies
2
Views
3K
Replies
5
Views
3K
Replies
1
Views
7K
Replies
4
Views
5K
Replies
7
Views
4K
Replies
2
Views
2K
Back
Top