Difference between revisions of "LaTeX"

From HCL
Jump to: navigation, search
(Editors)
Line 1: Line 1:
* [http://en.wikipedia.org/wiki/BibTeX BibTeX] - a reference management software
+
*[http://en.wikipedia.org/wiki/BibTeX BibTeX] - a reference management software  
* [http://en.wikipedia.org/wiki/Beamer_(LaTeX) Beamer] - a package for presentation slides
+
*[http://en.wikipedia.org/wiki/Beamer_(LaTeX) 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
+
*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
  
 
== Editors  ==
 
== Editors  ==
  
*vim with [http://vim-latex.sourceforge.net/index.php?subject=manual&title=Tutorial#tutorial vim-latex]
+
*vim with [http://vim-latex.sourceforge.net/index.php?subject=manual&title=Tutorial#tutorial vim-latex]  
 
*Kile  
 
*Kile  
 
*Emacs + plugin  
 
*Emacs + plugin  
 
*[[Eclipse]] + [[TeXlipse]]
 
*[[Eclipse]] + [[TeXlipse]]
  
== Windows ==
+
== Windows ==
* [http://miktex.org/ MiKTeX] - LaTeX implementation
+
 
* [http://www.texniccenter.org/ TeXnicCenter] - editor
+
*[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>

Revision as of 14:44, 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