% LESSON ELEVEN
          
\documentclass{amsart}
\thispagestyle{empty}
\begin{document}
             
\begin{center}
	\textbf{Lesson Eleven: Lists}
\end{center}  

\LaTeX\ has a variety of ``list'' environments. Here, we show first an 
example of the \verb!\enumerate! environment.\\

When the author of a math textbook doesn't want to include the proof of 
a theorem just stated, he or she may offer an excuse such as the following.

\begin{enumerate}
\item This proof is trivial.
\item This proof is left as an exercise for the reader.
\item This proof is so easy that even [\verb!name of friend/enemy!] could do it.
\item This proof is omitted to help reduce the cost of your textbook.
\item This proof is omitted due to 
	\begin{enumerate}
	\item lack of space
	\item lack of time
	\item lack of spacetime
	\item lack of competence
		\begin{enumerate}
		\item by myself
		\item by my graduate assistant who was supposed to write it
		\end{enumerate}
	\item lack of application, inspiration, and remuneration\\
	\end{enumerate}
\end{enumerate}
% To change the way an item is labelled, use \item[newlabel], where you
% replace 'newlabel' with 'A' or 'IV' or whatever you prefer.

The \verb!\itemize! environment provides those ever-popular bullet points.

\begin{center}
\textbf{Reasons to Be a Math Major}
\end{center}
\begin{itemize}
\item Love of math
\item Desire to learn to think logically
\item Mathematicians get all the hotties. [See Math Camp 2003 T-shirt.]
\item Math majors do it in \LaTeX.
\end{itemize}

\end{document} 
