[Tex/LaTex] Specifying bullet type when using itemize

itemizelistssymbols

Is there a way to get a specific type of bullet instead of the filled bullets when you first activate the itemize command in LaTeX? I am trying to get hollow bullets from the start instead of using nested commands to attempt to create them somehow. Thank you.

Best Answer

The enumitem package might be useful, combined with some package listed in the Comprehensive Symbol List:

\documentclass{article}
\usepackage{enumitem}
\usepackage{pifont}
\begin{document}
\begin{itemize}[label=\ding{212}]
\item First
\item Second
\end{itemize}
\end{document}

Dingbat items

Related Question