Theses, Books, Title pages ⇒ How to make the space between bullet points smaller
How to make the space between bullet points smaller
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!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to make the space between bullet points smaller
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