NetVillage: About LaTeX

About LaTeX

LaTeX is a document preparation system for high-quality typesetting. It is most often used for medium-to-large technical or scientific documents, but it can be used for almost any form of publishing.

LaTeX is not a word processor! Instead, LaTeX encourages authors not to worry too much about the appearance of their documents, but to concentrate on getting the right content. For example, consider this document:

Cartesian closed categories and the price of eggs
Jane Doe
September 1994

Hello world!

To produce this in most typesetting or word-processing systems, the author would have to decide what layout to use, so would select (say) 18pt Times Roman for the title, 12pt Times Italic for the name, and so on. This has two results: authors wasting their time with designs, and a lot of badly designed documents!

LaTeX is based on the idea that it is better to leave document design to document designers, and to let authors get on with writing documents. So in LaTeX, you would input this document as:

\documentclass{article}
\title{Cartesian closed categories and the price of eggs}
\author{Jane Doe}
\date{September 1994}
\begin{document}
\maketitle
Hello world!
\end{document}


Or, in English:

  • This document is an article.
  • Its title is Cartesian closed categories and the price of eggs.
  • Its author is Jane Doe.
  • It was written in September 1994.
  • The document consists of a title followed by the text Hello world!

LaTeX contains features for:

  • Typesetting journal articles, technical reports, books, and slide presentations.
  • Control over large documents containing sectioning, cross-references, tables and figures.
  • Typesetting of complex mathematical formulae.
  • Advanced typesetting of mathematics with AMS-LaTeX.
  • Automatic generation of bibliographies and indexes.
  • Multi-lingual typesetting.
  • Inclusion of artwork, and process or spot colour.
  • Using PostScript or Metafont fonts.

LaTeX is based on Donald E. Knuth's TeX typesetting language. LaTeX was first developed in 1985 by Leslie Lamport, and is now being maintained and developed by the LaTeX3 Project. LaTeX is available for free by anonymous ftp.

The source of information about writing LaTeX documents is LaTeX: A Document Preparation System by Leslie Lamport, Addison-Wesley, 2nd edition, 1994, ISBN 0-201-52983-1.

For a comprehensive guide to LaTeX packages, read The LaTeX Companion by Goossens, Mittelbach and Samarin, Addison-Wesley, ISBN 0-201-54199-8.

If you want to include graphical elements in your documents, you should get The LaTeX graphics Companion by Goossens, Rahtz and Mittelbach, Addison-Wesley, ISBN 0-291-85469-4.

The best source for news on TeX and LaTeX is the TeX Users Group.

There are a number of on-line guides for writing LaTeX documents, written by people not connected with the LaTeX3 project.

  • The TeX User's Group's meta-FAQ
  • The UK TeX User's Group's FAQ
  • An excellent place to start surfing the Web for information about TeX and LaTeX can be found at the open directory project
  • The (Not So) Short Introduction (pdf file) to LaTeX2e (850 kilobytes) is a good beginner's tutorial.
    There are a number of translations (ftp site) available.
  • Using Imported Graphics (pdf file) in LaTeX2e shows you how to do (almost) anything with graphics: side-by-side, rotated, etc.

If you can't find what you need in any of these, try a search of past postings to the news group comp.text.tex. One place where you can do that is Deja. If you are still puzzled, try posting to comp.text.tex. It's a friendly group.

And in case you were wondering, 'LaTeX' is pronouced 'Lah-tech' or 'Lay-tech', to rhyme with 'blech' or 'Berthold Brecht' (almost).

Source: The LaTeX Project: An Introduction
See also: The LaTeX Project

CategorySoftware