23

In Latex, how can I change change the space between the {itemize} "items" globally, such that I can continue to use the "itemize" and "item" tag without needing to redefine any new tags?

MRule
  • 529
  • 1
  • 6
  • 18
user639010
  • 333
  • 1
  • 2
  • 7
  • Please don't cross post. http://tex.stackexchange.com/questions/12373/how-to-change-the-space-between-the-itemize-items-in-latex – Bill the Lizard Feb 27 '12 at 13:13

1 Answers1

34

You could set the separating space inside an itemize environment.

\begin{itemize}
  \setlength{\itemsep}{5pt}

  \item Item1
  \item Item2
\end{itemize}

Alternatively, afaik, you would need to create your own environment.

smottt
  • 3,272
  • 11
  • 37
  • 44