0

Surely this is a basic question. I define nested lists using nested \begin{itemize} commands and I'm not satisfied with the default result. The indentation is OK but the marker style is the same for all items regardless of their list level. This looks counter-intuitive to me. Is there a standard (and simple) way to get different markers according to the level of indentation?

I don't feel that defining the marker style manually for each new list is an acceptable solution, nor do I wish to use many additional packages if it can be avoided.

1 Answers1

3

Load enumitem and set the markers per nesting level in you preamble. For instance:

\setlist[itemize,1]{label=\textbullet}
\setlist[itemize,2]{label=\textendash}
\setlist[itemize,3]{label=*}
\setlist[itemize,4]{label=$\circ$}
Bernard
  • 271,350