Itemize – How to Reduce Space at Beginning of Itemize

itemizelistsspacing

I am writing one list after one text.

 Following is list items:


   1. Pen
   2. Hen
   3. Ten

I need to reduce spacing between text (Following is list items:) and beginning of list (Pen). How can I reduce it?

Best Answer

Use the package enumitem:

\begin{enumerate}[topsep=0ex]
\item various stuff
\end{enumerate}    

The package allows you easy access to change the parameters which control the list environments: enumerate, description, and itemize.

Other parameters to adjust vertical spacing are: partopsep, parsep, itemsep. You pass these to the environment through an optional argument as keys as I did above with topsep=0ex.

Related Question