Difference between revisions of "LaTeX"

From HCL
Jump to: navigation, search
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
*[http://en.wikipedia.org/wiki/BibTeX BibTeX] - a reference management software  
+
*[[BibTeX]] - a reference management software  
*[http://en.wikipedia.org/wiki/Beamer_(LaTeX) Beamer] - a package for presentation slides  
+
*[[Beamer]] - a package for presentation slides
 +
*[[PGF/Tikz]]
 
*Listings - a package for putting programming code within LaTeX - http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=listings  
 
*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
 
*Latex can be used in the [[Doxygen]] documentation in order to inlcude formulas, biblio references etc
Line 9: Line 10:
 
*Kile  
 
*Kile  
 
*Emacs + plugin  
 
*Emacs + plugin  
*[[Eclipse]] + [[TeXlipse]]
+
*[[Eclipse]] + [http://texlipse.sourceforge.net/ TeXlipse]
  
 
== Windows  ==
 
== Windows  ==
Line 29: Line 30:
 
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.

Latest revision as of 18:24, 30 January 2012

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.