![僅減少首頁目錄條目的間距](https://rvso.com/image/392347/%E5%83%85%E6%B8%9B%E5%B0%91%E9%A6%96%E9%A0%81%E7%9B%AE%E9%8C%84%E6%A2%9D%E7%9B%AE%E7%9A%84%E9%96%93%E8%B7%9D.png)
我試圖使用setspace
package.json 在整個文件中獲得 1.5 的間距。然而,目錄條目中標題內容的間距顯得更大。僅如何減少前面的目錄條目的間距。
\documentclass[a4paper, 12pt]{book}
\usepackage{newtxtext}
\usepackage{setspace}
\onehalfspacing
\begin{document}
\frontmatter
\pagestyle{plain}
\addcontentsline{toc}{chapter}{\normalfont Front 1}
\addcontentsline{toc}{chapter}{\normalfont Front 2}
\addcontentsline{toc}{chapter}{\normalfont Front 3}
\addcontentsline{toc}{chapter}{\normalfont Front 4}
\tableofcontents
\mainmatter
\chapter{Chap 1}
\section{section 1}
\subsection{subsection 2}
\chapter{Chap 2}
\section{section 1}
\subsection{subsection 2}
\end{document}