How to change the space between the itemize items in latex?

42,290

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.

Share:
42,290
Admin
Author by

Admin

Updated on March 01, 2020

Comments

  • Admin
    Admin over 4 years

    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!

  • Admin
    Admin over 13 years
    How can I create my own environment?
  • smottt
    smottt over 13 years
    Take a look at this page: link