The cleanest way to do this is to use the enumitem package ( http://mirror.hmc.edu/ctan/macros/latex/contrib/enumitem/enumitem.pdf ). For example,

\documentclass{article} \usepackage{enumitem}% http://ctan.org/pkg/enumitem \begin{document} \noindent Here is some text and I want to make sure there is no spacing the different items. \begin{itemize}[noitemsep] \item Item 1 \item Item 2 \item Item 3 \end{itemize} \noindent Here is some text and I want to make sure there is no spacing between this line and the item list below it. \begin{itemize}[noitemsep,topsep=0pt] \item Item 1 \item Item 2 \item Item 3 \end{itemize} \end{document}
Also, if you want to use this option globally by lists, you can use
\usepackage{enumitem}% http:
However, note that this package does not work with the beamer package, which is used to create presentations in Latex.
user3613932 Jan 21 '16 at 8:52 2016-01-21 08:52
source share