Difference between revisions of "LaTeX"

From HCL
Jump to: navigation, search
Line 29: Line 29:
 
then  
 
then  
  
<source lang="">pdflatex file.tex</source>
+
<source lang="">pdflatex file.tex</source>  
 +
 
 +
If you include graphics without the extension both latex and pdflatex will work when you keep both .eps and .pdf files in your image directory.

Revision as of 15:47, 31 March 2011

Editors

Windows

Working with eps images

.tex with .eps images

latex file.tex
dvipdf file.tex

or convert all eps images to pdf

for i in `ls *.eps`; do echo $i; epspdf $i; done

then

pdflatex file.tex

If you include graphics without the extension both latex and pdflatex will work when you keep both .eps and .pdf files in your image directory.