Difference between revisions of "LaTeX"

From HCL
Jump to: navigation, search
Line 9: Line 9:
 
*Kile  
 
*Kile  
 
*Emacs + plugin  
 
*Emacs + plugin  
*[[Eclipse]] + [[TeXlipse]]
+
*[[Eclipse]] + [http://texlipse.sourceforge.net/ TeXlipse]
  
 
== Windows  ==
 
== Windows  ==

Revision as of 12:47, 18 July 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.