7 Lists
While creating a document, you’ll sometimes find yourself in need of creating a bullet point or numbered list. In LaTeX it is quite simple to enter such a list – all you need to do is tag the beginning and end of the list section with either \begin{enumerate} and \end{enumerate} for numbered lists or \begin{itemize} and \end{itemize} for bullet-point lists. Each element of the list should begin with \item markup tag, as seen in the example.
This is a numbered list:
\begin{enumerate}
\item First element of the numbered list.
\item Second element of the numbered list.
\item Third element of the numbered list.
\end{enumerate}
This is a bullet point list:
\begin{itemize}
\item Those
\item elements
\item aren't
\item numbered.
\end{itemize}
You can also combine lists:
\begin{enumerate}
\item There are several issues related to that, in order:
\begin{enumerate}
\item This is the first one.
\item This is the second one.
\end{enumerate}
\item Here we also need to mention couple of things, but without order:
\begin{itemize}
\item For example this...
\item ...or this.
\end{itemize}
\end{enumerate}