[Tex/LaTex] How to add more space between list items

listsspacing

I have a list. Editor says it shall have more space between items. How to achieve such thing?

Best Answer

With the enumitem package, you can add more space between items as follows:

\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{itemize}[itemsep=5em]
\item Foo
\item Bar
\end{itemize}
\end{document}

An itemsep of 5em is obviously insanely big, but it shows what can be done.

If you want the change to be global (i.e. apply to all lists) then you could instead add \setitemize{itemsep=5em} to your preamble. But with a sensible itemsep, obviously.