目次の間隔を狭める

目次の間隔を狭める

目次の行間隔を狭くするにはどうすればいいですか? 試してみましたが\renewcommand{\baselinestretch}{1}、うまくいきませんでした...

答え1

スペース環境の代わりに、tocloftより細かい制御のためにパッケージを使用することもできます。MWE を参照してください。

\documentclass{book}
\usepackage[titles]{tocloft}
\setlength{\cftbeforechapskip}{.1ex}
\setlength{\cftbeforesecskip}{-.5ex}
\usepackage{lipsum} % placeholder text
\begin{document}
\tableofcontents
\chapter{The chapter one}
\chapter{The chapter two}
\section{Lore ipsum}
\lipsum[1]
\section{Nam dui ligula}
\lipsum[2]
\section{Nulla malesuada}
\lipsum[3]
\chapter{The chapter three}
\section{Lore ipsum}
\lipsum[1]
\chapter{The chapter four}
\section{Lore ipsum}
\lipsum[1]
\end{document} 

関連情報