Difference between revisions of "LaTeX"

From HCL
Jump to: navigation, search
m (Latex moved to LaTeX)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
* Beamer - a package for presentation slides
+
*[[BibTeX]] - a reference management software
* Listings - a package for putting programming code within LaTeX - http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=listings
+
*[[Beamer]] - a package for presentation slides
* Latex can be used in the [[Doxygen]] documentation in order to inlcude formulas, biblio references etc
+
*[[PGF/Tikz]]
 +
*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 ==
+
== Editors ==
* Kile
 
* Emacs + plugin
 
* [[Eclipse]] + [[TeXlipse]]
 
  
== Windows ==
+
*vim with [http://vim-latex.sourceforge.net/index.php?subject=manual&title=Tutorial#tutorial vim-latex]
* [[http://miktex.org/ MiKTeX]] - LaTeX implementation
+
*Kile
* [[http://www.texniccenter.org/ TeXnicCenter]] - editor
+
*Emacs + plugin
 +
*[[Eclipse]] + [http://texlipse.sourceforge.net/ TeXlipse]
 +
 
 +
== Windows ==
 +
 
 +
*[http://miktex.org/ MiKTeX] - LaTeX implementation  
 +
*[http://www.texniccenter.org/ TeXnicCenter] - editor
 +
 
 +
== Working with eps images  ==
 +
 
 +
.tex with .eps images
 +
 
 +
<source lang="">latex file.tex
 +
dvipdf file.tex</source>
 +
 
 +
or convert all eps images to pdf
 +
 
 +
<source lang="">for i in `ls *.eps`; do echo $i; epspdf $i; done</source>
 +
 
 +
then
 +
 
 +
<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 17: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.