next up previous contents
Next: Creating your Document Up: Inessential LATEX Previous: LATEX on Athena

Getting Started

This section describes how to typeset a simple paper in the standard way for processing by LATEX. All of the information here is also presented elsewhere in this document, but with a lot more detail; think of this section as ``the short form'' to using LATEX.

The first thing you need to do is to create your LATEX source file. This file contains all the text for your paper as well as LATEX commands (to be described shortly). You can use any editor you wish to create the file; documentation on how to use text editors is available from Athena. Emacs includes special code set up to make using LATEX easier, and is a good first choice. You can name your LATEX file anything you wish; the only requirement is that it end with the four characters .tex.

The general format of a LATEX file is shown in the following example.

\documentclass{article}
\usepackage{doublespace}
\usepackage{fullpage}

\title{A Sample Paper}
\author{Melissa I. Thompson}
\date{\today}

\begin{document}

\maketitle

It was a dark and stormy night, and all of the Athena fileservers had
crashed.  Poor me, I had to write a paper for one of my HASS-D
classes.

Luckily, I was able to use a wonderful text formatting program called
\LaTeX{}, and everything worked out fine.
\end{document}

Here is a description of each part.


next up previous contents
Next: Creating your Document Up: Inessential LATEX Previous: LATEX on Athena
Alex Rolfe
1999-10-29