仅减少前言中的目录条目间距

仅减少前言中的目录条目间距

我尝试使用setspace包在整个文档中获得 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}

相关内容