Skip to content

Lists

Ordered

\begin{enumerate}
    \item Item_1
    \item Item_2
\end{enumerate}

Unordered

\begin{itemize}
    \item Item_1
    \item Item_2
\end{itemize}

The lists can be nested as such:

\begin{enumerate}
    \item One
    \begin{enumerate}
        \item Two
        \item Three
        \item Four
    \end{enumerate}
    \item Five
    \item Six
\end{enumerate}

Pasted image 20240404151605.png

Bullets

The style of bullets can be changed using:

\usepackage{enumitem}

Default Labels

\begin{enumerate}[label=(roman*)]
\end{enumerate}
  • (\roman*)
  • \arabic*)
  • \alph*)

Pasted image 20240404151209.png

Custom Labels

You can also change the bullets of each unique item to whatever you want:

\item[$-$]
\item[$\ast$]

Also,

\usepackage{pifont}
\item[\ding{CHARACTER_CODE}]

Pasted image 20240404152055.png

Characters Codes for reference

If you don't want to keep writing the code for each item separately, you can also use:

\renewcommand{\labelitemi}{CHARACTER_TO_SHOW}

to globally change the bullets shown by \item command.

Tip

  • For nested level 1, use \labelitemi.
  • For nested level 2, use \labelitemii.
  • For nested level 3, use \labelitemiii.