Hello,
I wanted to ask how to make the space between bullet points smaller. Because I will have a space problem and even though it is tiny bit, it will help me!
I'm using the Doctor/Master Thesis Template.
Thank you!
Theses, Books, Title pages ⇒ How to make the space between bullet points smaller
NEW: TikZ book now 40% off at Amazon.com for a short time.

How to make the space between bullet points smaller
You can use the enumitem package to change the spacing between the entries.
Code: Select all
\documentclass[11pt]{article}
%
\usepackage{enumitem}
\begin{document}
Default:
\begin{itemize}
\item Line 1.
\item Line 2.
\item Line 3.
\item Line 4.
\end{itemize}
\vspace*{1em}
Changed:
\begin{itemize}[itemsep=1mm, parsep=0pt]
\item Line 1.
\item Line 2.
\item Line 3.
\item Line 4.
\end{itemize}
\end{document}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
How to make the space between bullet points smaller
Thank you
It worked!
