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}
Bullets
The style of bullets
can be changed using:
\usepackage{enumitem}
Default Labels
\begin{enumerate}[label=(roman*)]
\end{enumerate}
(\roman*)
\arabic*)
\alph*)
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}]
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
.