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?
Asked
Active
Viewed 4.6k times
23

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 Answers
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
-
-
Take a look at this page: [link](http://en.wikibooks.org/wiki/LaTeX/Formatting#Customizing_Lists) – smottt Mar 01 '11 at 09:36