Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
labs:latex [2008/10/14 19:13] adminlabs:latex [2012/04/24 20:19] (current) – [Creating LaTeX Files] admin
Line 1: Line 1:
 +====== LaTeX and BibTeX ======
  
 +**LaTeX** is a document preparation system for high-quality typesetting.  It is often used for scientific and technical papers.  The idea behind LaTeX is that the author should concentrate on the content and the document designer should concentrate on the appearance of document.  This separation of concerns is similar to HTML (containing the content) and CSS (the style to apply to the document).
 +
 +===== Creating LaTeX Files =====
 +
 +One way:
 +
 +  latex <"main" filename, optionally without .tex extension>
 +
 +Creates a ''dvi'' file with same name as ''.tex'' file.  
 +
 +This approach requires less disk space and is faster.  However, ''dvi'' is an older file format and not portable.
 +
 +To view a ''dvi'' file, use ''xdvi''.
 +
 +Another approach:
 +
 +  pdflatex <"main" filename, optionally without .tex extension>
 +
 +Creates a ''pdf'' file with the same name as the ''.tex'' file.
 +
 +This approach is slower and requires more disk space but creates a portable PDF document.
 +
 +==== Adding Bibtex ====
 +
 +For either approach, to add bibtex to the document, run
 +
 +  bibtex <"main" filename, without .tex extension>
 +===== IDEs =====
 +
 +Instead of using a text editor and commands to generate your document, you may prefer an IDE.
 +
 +  * [[http://www.xm1math.net/texmaker/index.html|Texmaker]]
 +  * [[http://kile.sourceforge.net/|Kile]]
 +
 +===== Help Documents =====
 +
 +  * [[http://en.wikibooks.org/wiki/LaTeX|LaTeX on Wikibooks]]
 +  * [[http://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#BibTeX|BibTeX on Wikibooks]]
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0