%
% sample.tex
% Steve Shah (sshah at planetoid dot org)
%
%     A sample layout for LaTeX documents. This is the ``article'' format
%     which is useful for class reports, etc.
%
%
\documentclass{article}
\begin{document}


%
% The document's title
%

\title{Document Title}


%
% Document's authors 
%
%    Replace the string ``Arthur Dent'' with your own name, and the
%    string ``adent@galaxy.com'' with your e-mail address. The ``\em''
%    tag simply tells LaTeX to use the italics font while printing your
%    e-mail address. If you don't want to print your address there, you
%    can change it to something like:
%         \author{Arthur Dent}
%
%    If you have multiple authors or need to provide more information
%    about yourself (ie: a SSN) you may want to split the title up
%    into multiple lines like this:
%
%         \author{Arthur Dent\\
%                 Ford Prefect\\}
%

\author{Arthur Dent ({\em adent@galaxy.com})}


% 
% Misc. instructions to build the title headers and date
%

\maketitle
\date{}


%
% Abstract
%
%    This section will be printed in a slightly smaller font and
%    be indented a little. Its purpose is to give you a place to
%    provide a document summary (typically one paragraph) to the
%    reader. In papers, this is often used to index your paper for
%    search engines. The ``\LaTeX'' command makes LaTeX print its
%    own name out a little more stylishly.
%

\begin{abstract}

This document is about writing simple \LaTeX documents.

\end{abstract}




%
% Sections
%
%   This is the meat of the document. 
%

\section{This is my first section}
This is some broad topic that I want to talk about. 

\subsection{This is my first subsection}
I'm focusing in a little more here.

\subsubsection{Even more focus here}
I'm going to write two paragraphs here to show how to break up paragraphs
in \LaTeX. Its pretty easy.\\

See, this is another paragraph.\\

So is this.\\

\section{The Next Major Topic}
This is another major section, but I don't have much to say in it.

\subsection{Another sub topic}
Again, not much to say anymore.

\subsection{But...}
I thought I'd show what happens with two subsections right after one
another.\\

Neat, huh?

\section{Conclusion}
\LaTeX isn't the most intuitive word processor in the world. But
you can use it across Windoze and UNIX so its convient.




%
% End of document
%

\end{document}



