← Overview
Bulleted and numbered lists, nested to any depth.
An unordered list:
- First item
- Second item with **bold**
- A nested item
- Third item
A numbered list:
1. First point
2. Second point
- , * or +1. (or 1) )An unordered list becomes an itemize environment, a numbered list an enumerate environment. Nested lists become nested environments.
\begin{itemize}
\item First item
\item Second item with \textbf{bold}
\begin{itemize}
\item A nested item
\end{itemize}
\item Third item
\end{itemize}
\begin{enumerate}
\item First point
\item Second point
\end{enumerate}
<aside> 📸
Screenshot needed: the compiled PDF of the two lists above — a bulleted list with one indented sub-item, followed by a numbered list.
</aside>