Text FormattingSpace between \itemize

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
tpokala
Posts: 21
Joined: Wed Nov 10, 2010 6:13 pm

Space between \itemize

Post by tpokala »

Hi,

I would like to change space between each item in \itemize (interline) but if I use \linespread{1.2} space between text in \item is changed. I want change space between every dot only but now in contain of every \item
Last edited by tpokala on Thu Dec 09, 2010 1:09 pm, edited 1 time in total.

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Space between \itemize

Post by frabjous »

Change the value of \itemsep length:

Code: Select all

\begin{itemize}
\setlength{\itemsep}{1.2\baselineskip}
\item Some text
\item Something else
\item Something different
\end{itemize}
If you use a package like enumitem you can also do:

Code: Select all

\begin{itemize}[itemsep=1.2\baselineskip]
\item Whatever
\item Another thing
\item Hello world
\end{itemize}
Post Reply