Difference between revisions of "LaTeX"
From HCL
					
										
					
					| Line 9: | Line 9: | ||
*Kile    | *Kile    | ||
*Emacs + plugin    | *Emacs + plugin    | ||
| − | *[[Eclipse]] + [  | + | *[[Eclipse]] + [http://texlipse.sourceforge.net/ TeXlipse]  | 
== Windows  ==  | == Windows  ==  | ||
Revision as of 12:47, 18 July 2011
- BibTeX - a reference management software
 - Beamer - a package for presentation slides
 - Listings - a package for putting programming code within LaTeX - http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=listings
 - Latex can be used in the Doxygen documentation in order to inlcude formulas, biblio references etc
 
Editors
Windows
- MiKTeX - LaTeX implementation
 - TeXnicCenter - editor
 
Working with eps images
.tex with .eps images
latex file.tex
dvipdf file.texor convert all eps images to pdf
for i in `ls *.eps`; do echo $i; epspdf $i; donethen
pdflatex file.texIf you include graphics without the extension both latex and pdflatex will work when you keep both .eps and .pdf files in your image directory.