6

I was wondering how can I set globally itemize lists to use dashes instead of bullets using the memoir class. Right now I have to always do:

\begin{itemize}[-]
...
\end{itemize}
lockstep
  • 250,273
fikovnik
  • 173

1 Answers1

8

You can use \renewcommand to change the default behavior of the itemize environment:

\renewcommand{\labelitemi}{--}

But if you do this for one level, you'll want to do it for all levels For example:

\renewcommand{\labelitemii}{+}
\renewcommand{\labelitemiii}{$\circ$}
\renewcommand{\labelitemiv}{$\bullet$}

The best place to do this would be in your preamble.

A.Ellett
  • 50,533