Theses, Books, Title pagesHow to make the space between bullet points smaller

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to make the space between bullet points smaller

Post by crashpole »

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!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

mas
Posts: 226
Joined: Thu Dec 04, 2008 4:39 am

How to make the space between bullet points smaller

Post by mas »

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}
x.png
x.png (4.09 KiB) Viewed 25628 times

OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to make the space between bullet points smaller

Post by crashpole »

Thank you :) It worked!
Post Reply