如何设置目录的行距与文档其他部分不同?

如何设置目录的行距与文档其他部分不同?

我正在写我的大学期末论文,我们必须使用双行跨页和 Times New Roman 字体。如果我\linespread{1.6}在序言中设置,一切都很好,只是目录中的\section间距很大。如果我在标记注释发生后设置行距\tableofcontents,行距保持正常。

是否有可能仅在 TOC 中保持正常的线路分布?

答案1

您可以使用该包提供的功能setspace

\documentclass{article}
\usepackage{setspace}

\doublespacing

\begin{document}

\begingroup
\singlespacing
\tableofcontents
\endgroup

\section{Section One}
\section{Section Two}
\section{Section Three}
\section{Section Four}
\section{Section Five}

\end{document}

或者

\documentclass{article}
\usepackage{setspace}

\begin{document}

\tableofcontents

\doublespacing

\section{Section One}
\section{Section Two}
\section{Section Three}
\section{Section Four}
\section{Section Five}

\end{document}

答案2

你可以使用该setspace包。只需将其添加\usepackage{setspace}到序言和\doublespacing目录之后:

\documentclass{article}
\usepackage{setspace}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\doublespacing
\section{one}
\lipsum[1-4]
\section{two}
\lipsum[5-8]
\section{three}
\lipsum[9-12]
\end{document}

不同间距的目录

相关内容