Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the space between the itemize items in latex? [closed]

Tags:

How to change the space between the itemize "items" in latex so that I can continue to use the "itemize" and "item" tag without needing to redefine any new tags?

Thank for your help!

like image 242
user639010 Avatar asked Mar 01 '11 08:03

user639010


1 Answers

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.

like image 194
smottt Avatar answered Sep 26 '22 21:09

smottt