Last Updated: February 25, 2016
·
18.7K
· michie1

Remove bullet from list in Latex

If you have a list made with itemize, but you want to remove the bullet in front of the item, use \item[]

\begin{itemize}
    \item Has bullet
    \item[] No bullet
    \item Has bullet
\end{itemize}