In Latex, how do I eliminate the space inserted before itemize?
\begin{itemize} % produces lots of vertical space
\item ...
\item ...
\end{itemize}
|
In Latex, how do I eliminate the space inserted before itemize?
| ||||
|
feedback
|
|
Try \vspace{-5mm} before the itemize | |||||||||||||||||
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... | |||
|
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. | |||
|
feedback
|
|
The way to fix this sort of problem is to redefine the relevant list environment. The Here's how to do (something like) what it is I think you want:
\usepackage{enumitem}
\setlist{nolistsep}
| ||||
|
feedback
|
| ||||
feedback
|