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.
Asked
Active
Viewed 2e+01k times
5 Answers
48
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}

Mike Renfro
- 20,550
44
\renewcommand{\labelitemi}{$\circ$}
\renewcommand{\labelitemii}{$\circ$}
\renewcommand{\labelitemiii}{$\circ$}
\renewcommand{\labelitemiv}{$\circ$}
...
where i, ii, iii, etc. refer to the current bullet level.
Skeleton Bow
- 1,179
Richard Durr
- 845
-
1Warning: don't work with french option in Babel: https://tex.stackexchange.com/questions/123668/how-can-i-define-bullet-style-for-itemize-with-french-option-babel – Gabriel Soranzo Jan 06 '22 at 12:18
-
@GabrielSoranzo apparently it does now, at least on my system (Debian 12.2). – Anthony Labarre Nov 18 '23 at 19:52
23
One possible way to accomplish it is...
First, include amssymb package by adding the line \usepackage{amssymb} in the preamble of your document.
\begin{itemize}
\item[$\checkmark$] This will give a checkmark bullet.
\item[$\square$] This will give a hollow square bullet.
\item[$\blacksquare$] This will give a filled square bullet.
\item[$\bigstar$] This will give you a bigstar bullet.
\end{itemize}
The list of all keywords like square, checkmark etc. can be found in amssymb package documentation. Visit: http://milde.users.sourceforge.net/LUCR/Math/mathpackages/amssymb-symbols.pdf
CarLaTeX
- 62,716
user408108
- 403
19
Try the list environment:
\begin{list}{$\circ$}{}
\item A
\item B
\end{list}
Ian Thompson
- 43,767
-
-
3@Rajan --- See the comprehensive list http://mirrors.ctan.org/info/symbols/comprehensive/symbols-a4.pdf – Ian Thompson Mar 09 '22 at 22:16
3
In LaTeX
\item[$\diamond$]
(your text)
will change that item's bullet to a diamond. This works on a per item basis.
Werner
- 603,163
Phil Regalia
- 41