停止标题和内容之间的分页符

停止标题和内容之间的分页符

我在 LaTeX 中使用文章类,并且想要在各部分之间添加分页符,因此我在序言中添加了以下内容:

\usepackage{titlesec}
\newcommand{\sectionbreak}{\clearpage}

但是,我不希望标题页和目录页之间有分页符。这是我的 MWE:

\documentclass{article}
\usepackage{titlesec}
\newcommand{\sectionbreak}{\clearpage}
\title{Linear State Space Control Theory}
\date{June 4, 2015}
\author{texasflood}
\begin{document}
\maketitle
\tableofcontents
\section{Introduction}
Hello
\section{State space description}
\end{document}

我尝试\nopagebreak[4]在两者之间\maketitle添加,\tableofcontents但没有效果。

答案1

\documentclass{article}
\usepackage{titlesec}

\title{Linear State Space Control Theory}
\date{June 4, 2015}
\author{texasflood}
\begin{document}
\maketitle
\tableofcontents
\newcommand{\sectionbreak}{\clearpage}
\section{Introduction}
Hello
\section{State space description}
\end{document}

相关内容