+1 vote
in General IT Tips by (56.8k points)
The space between the items of enumerate is too big in my document. How can I minimize the space between the items?

1 Answer

+1 vote
by (349k points)
selected by
 
Best answer

You can use "\itemsep" to specify the spacing between the items. In the following example, I have used 0em to specify the smallest spacing between the items. You can change it to 1em, 2em, or any other value depending on your requirement.

Here is an example:

\begin{enumerate}

    \itemsep0em

    \item hello

    \item world

\end{enumerate} 

Related questions

+3 votes
1 answer
+1 vote
1 answer
+1 vote
1 answer
+2 votes
1 answer
+1 vote
1 answer

...