DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Introduction to LaTeX

TeX and associated programs such as LaTeX (formatted as LaTeX, and pronounced "Lah-tech") is a system for computer typesetting. It is well known for its skill with mathematical and scientific text (LaTeX is used as the primary method of displaying formulas on Wikipedia) and other difficult typesetting jobs such as long or intricate documents and multilingual works.

TeX systems produce output -- on paper or on the computer screen -- of the highest typographic quality. Even on simple documents, you get a better job than a word processor. Compare these samples of plain text from Herigels' Zen in the Art of Archery done in the word processor Word, and TeX. These are short and the typographic differences are subtle but even a non-expert will have the sense that the TeX page looks better. For instance, the word processor's page has some lines with wide gaps between words and some lines with too many words stuffed in; contrast the second paragraph's second line with its third. TeX's output is better.

LaTeX is intended to provide a high-level language that accesses the power of TeX. LaTeX essentially comprises a collection of TeX macros and a program to process LaTeX documents. Because the TeX formatting commands are very low-level, it is usually much simpler for end-users to use LaTeX.

Similarly to reStructuredText, 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. In reStructuredText you would input a simple document as:

=================================================
Cartesian closed categories and the price of eggs
=================================================

:author: Jane Doe
:date: September 1994

My First Chapter
================

Hello world!

and 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
\section{My First Chapter}
Hello world!
\end{document}

History

LaTeX is based on Donald E. Knuth's TeX typesetting language or certain extensions. LaTeX was first developed in 1985 by Leslie Lamport, and is now being maintained and developed by the LaTeX3 Project. It is worth mentioning that first release of TeX dates back from 1978 and that the current stable release is version 3.1415926 from March 2008!

Here are a few really interesting interviews from Donald E. Knuth: