Latex Resouces

This page will contain resources for using LaTeX. This is a freely-available program for formatting and presenting technical (and non-technical) papers and books. It is available for all computing platforms.

A LaTeX Shell File

You can copy this file from the page or download it by using the link in the navigation area.


\documentclass{article}      % Specifies the document class
                             % The preamble begins here.
\title{TITLE}
% Declares the document's title.
\author{C'est Moi!}      % Declares the author's name.
\date{\today}      % Deleting this command produces today's date.
\setlength{\parskip}{6pt}
\newenvironment{ul}{\begin{itemize}\setlength{\parskip}{0pt} }{\end{itemize}}
\newenvironment{ol}{\begin{enumerate}\setlength{\parskip}{0pt}}{\end{enumerate}}
                             % The preamble ends here.
\begin{document}
You just landed on my New York Ave. hotel.
\begin{ol}
\item Begin by mortgaging all of your deeds.
\item Now pay my hotel rent.
\item Cough up or conk out!
\end{ol}
$$ e^{i\pi} = -1$$
\end{document}
            

Useful Links