[Tex/LaTex] Itemize with a dash “-” instead of a bullet

itemizelists

If I use

\begin{itemize}
\item asdasd
\item dsfsdf
\end{itemize}

the items are with a bullet, but how can I itemize these two with a "-" (a dash / a hyphen / a small line)?

Best Answer

One-at-a-time method:

\begin{itemize}
\item[--] asdasd
\item[--] dsfsdf
\end{itemize}

Set all first-level bullet-point to --:

At preamble, in plain-TeX

\def\labelitemi{--}

or in LaTeX

\renewcommand\labelitemi{---}

These have the same effect, but if you want all your definitions to look similar you can prefer one over the other.


Set the first-level bullet-point to -- only in one itemize environment:

\begin{itemize}
\renewcommand\labelitemi{--}
\item asdasd
\item dsfsdf
\end{itemize}