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!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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
How to make the space between bullet points smaller
