[Tex/LaTex] How to reduce spaces between bullet points in itemize

bulletsitemize

How to reduce spaces between bullet points in itemize?

I am using itemize. I want to reduce the spacing between two lines(Two bullet points). How do I do that?

Best Answer

Like this.

\documentclass{article}
\begin{document}
\begin{itemize}
\addtolength\itemsep{-4mm}
\item The first
\item The second
\end{itemize}
\end{document}
Related Question