Text Formatting ⇒ Space between \itemize
Space between \itemize
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
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
Space between \itemize
Code: Select all
\begin{itemize}
\setlength{\itemsep}{1.2\baselineskip}
\item Some text
\item Something else
\item Something different
\end{itemize}
Code: Select all
\begin{itemize}[itemsep=1.2\baselineskip]
\item Whatever
\item Another thing
\item Hello world
\end{itemize}