Javiss
Javiss

Reputation: 805

decreasing line spacing itemize latex

I would like to place each item more close to each other, that is, decrease the line spacing but I didn't find any useful thing.

\begin{itemize}
         \item Processor: Intel Core \textsuperscript{TM} i5-5300U CPU @ 2.3GHz
         \item RAM: 8 GB
         \item OS: Windows 7
         \item Computer: HP840G
\end{itemize}

Upvotes: 5

Views: 15025

Answers (1)

Max De Koninck
Max De Koninck

Reputation: 343

in the preamble include \usepackage{enumitem} and then you can cutsom set the itemsep in the itemize like this: \begin{itemize}[itemsep=20pt] or no item seperator \begin{itemize}[noitemsep].

Upvotes: 14

Related Questions