Thread: Why use pdf?
View Single Post
Old 10-09-2003, 05:39 AM   #25 (permalink)
kel
WARNING: FLAMMABLE
 
Location: Ask Acetylene
http://www.latex-project.org/

It's a macro package for the tex typesetting engine. Forget about how your equations, diagrams etc. are going to be formatted and just write them... hit typeset and LaTeX makes it look beautiful... The easiest most portable way to distribute documents is through .PDF
Taken from: http://www.latex-project.org/intro.html
The fonts are lost...
Quote:
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 (Not So) Short Introduction to LaTeX2e (850 kilobytes) is a good beginner's tutorial.
There are a number of translations available..

And in case you were wondering, `LaTeX' is pronouced `Lah-tech' or `Lay-tech', to rhyme with `blech' or `Berthold Brecht' (almost).
__________________
"It better be funny"

Last edited by kel; 10-09-2003 at 05:46 AM..
kel is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76