Tobias Krause wrote:
Hi,

is there a way to change the spacing in itemized/ numbered lists for the whole document?
I'd like the spacing to be the same as the normal line spacing.

Regards
 Toby


In the preamble type:

\usepackage{enumitem}
\setenumerate{itemsep=0ex,parsep=0ex}
\setitemize{itemsep=0ex,parsep=0ex}.

You can adjust lengths to taste. If you also want this to apply to description lists (or if you have no description lists), you can replace those two lines with

\setlist{itemsep=0ex,parsep=0ex}.

You can also adjust the vertical spacing between lists and surrounding paragraphs the same way.

/Paul


Reply via email to