latex/workbook/example10.tex
author Puneeth Chaganti <punchagan@fossee.in>
Mon, 31 Jan 2011 17:19:51 +0530
changeset 154 148520862e53
parent 107 80a8b46754f8
permissions -rw-r--r--
vcs: Minor fixes to handout. 1. Made madhu's commit shorter to fit in one line. 2. Change Author details to have just the Name. 3. Change some punctuation.

\documentclass{article}
\begin{document}
This is my simple document with nested lists. 
\begin{enumerate}
\item First Enumerated Item. 
\item Second Enumerated Item. 
\item Third Enumerated Item. 
  \begin{itemize}
  \item First Item.
  \item Second Item.
  \item Third Item.
    \begin{itemize}
    \item First Sub-Item.
    \item Second Sub-Item.
    \item Third Sub-Item.
    \item Fourth Sub-Item.
    \end{itemize}
\end{enumerate}
\end{document}