Lists are essential for organizing thought. LaTeX supports three main types.
Level 1: Unordered & Ordered
Source Code
Example OutputStatic
\begin{itemize}
\item Apples
\item Bananas
\end{itemize}
\begin{enumerate}
\item Wake up
\item Drink coffee
\end{enumerate}
- Apples
- Bananas
- Wake up
- Drink coffee
Level 2: Nested Lists
LaTeX automatically handles indentation and changing bullet styles for you.
Source Code
Example OutputStatic
\begin{enumerate}
\item Preparation
\begin{itemize}
\item Buy ingredients
\item Preheat oven
\end{itemize}
\item Baking
\end{enumerate}
- Preparation
- Buy ingredients
- Preheat oven
- Baking
Level 3: Description Lists
Great for definitions or glossaries.
LaTeX
\begin{description}
\item[HTML] HyperText Markup Language
\item[CSS] Cascading Style Sheets
\item[JS] The language of the web
\end{description}