up vote 11 down vote favorite
2
share [g+] share [fb]

In Latex, how do I eliminate the space inserted before itemize?

\begin{itemize} % produces lots of vertical space
\item ...
\item ...
\end{itemize}
link|improve this question

feedback

5 Answers

up vote 8 down vote accepted

Try \vspace{-5mm} before the itemize

link|improve this answer
1  
I accept your solution because it is simpler (when used together with \newcommand) than the others – Alexandru Jun 30 '09 at 9:26
9  
\vspace is the road to ruin. You must not fight LaTeX, but rather embrace it. – Eric Jul 2 '09 at 8:25
3  
yes, but sometimes the fight is too much to handle. – Stefano Borini Jul 2 '09 at 12:50
3  
You mean the embrace is too much to handle, and the fight is easier :-) – Joachim Breitner Oct 12 '11 at 9:29
feedback

The "proper" LaTeX ways to do it is to use a package which allows you to specify the spacing you want. There are several such package, and these two pages link to lists of them...

link|improve this answer
3  
It is never a bad idea to point at CTAN ( ctan.org ). – dmckee Jun 30 '09 at 0:00
feedback

I'm very happy with the paralist package. Besides adding the option to eliminate the space it also adds other nice things like compact versions of the itemize, enumerate and describe environments.

link|improve this answer
feedback

The way to fix this sort of problem is to redefine the relevant list environment. The enumitem package is my favourite way to do this sort of thing; it has many options and parameters that can be varied, either for all lists or for each list individually.

Here's how to do (something like) what it is I think you want:

\usepackage{enumitem}
\setlist{nolistsep}
link|improve this answer
feedback
\renewcommand{\@listI}{%
\leftmargin=25pt
\rightmargin=0pt
\labelsep=5pt
\labelwidth=20pt
\itemindent=0pt
\listparindent=0pt
\topsep=0pt plus 2pt minus 4pt
\partopsep=0pt plus 1pt minus 1pt
\parsep=0pt plus 1pt
\itemsep=\parsep}
link|improve this answer
This reduces a lot of the whitespace around the list, but fails to remove some of the whitespace immediately above and below the list itself. – jevon Jul 13 '11 at 5:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.