Let
X
How-to

How to Make Bullet Points and Numbered Lists in LaTeX

The fix

To make a bulleted list in LaTeX use the itemize environment; for a numbered list use enumerate. Start each entry with \item. You can nest one inside another for sub-points — LaTeX adjusts the bullet/number style automatically.

Example

\begin{itemize}
  \item First point
  \item Second point
  \begin{itemize}
    \item A sub-point
  \end{itemize}
\end{itemize}

\begin{enumerate}
  \item Step one
  \item Step two
\end{enumerate}

Frequently asked questions

How do I change the bullet symbol?

Pass an optional argument to \item, e.g. \item[--] Dash, or use the enumitem package: \begin{itemize}[label=$\bullet$].

How do I control numbering style?

With the enumitem package: \begin{enumerate}[label=\alph*)] gives a), b), c). Options include \arabic*, \roman*, \Alph*.

Try the fix in LetX

Open the editor, paste your code, and compile in 1–2 seconds to see the error clear — free, in your browser.

Open LetX Free