删除目录标题后的一行

删除目录标题后的一行

有没有办法删除“内容”标题和目录第一章之间的一行?如果有帮助,以下是我的文档的具体内容。

\documentclass[11pt, letterpaper, doublespace, openany]{report}

\newpage
\maketitle
\newgeometry{top=1in,bottom=1in,right=1in,left=1.5in}
\vspace*{-0.9in}

\tableofcontents

\chapter{Theoretical Background} 

在此处输入图片描述

答案1

使用该tocloft包,您可以通过执行以下操作减去一行的等价内容

\addtolength{\cftaftertoctitleskip}{-\baselineskip}

\documentclass{report}

\usepackage{tocloft}
\addtolength{\cftaftertoctitleskip}{-\baselineskip}

\begin{document}

\tableofcontents

\chapter{Theoretical Background} 

\end{document}

相关内容