标题、摘要和目录在同一页

标题、摘要和目录在同一页

我试图避免在摘要和目录之间出现分页符,每次编译时我都会在摘要结束后立即出现分页符。

\documentclass[aps,pra,onecolumn,superscriptaddress]{revtex4-1}
\usepackage{amsfonts,amssymb,amsthm,epsfig,epstopdf,amsmath,bbm,bm}
\usepackage{mathrsfs}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{commath}
\usepackage{blindtext}
\usetikzlibrary{arrows,shapes}
\usepackage{float}
\usetikzlibrary{fadings}
\usepackage{amsmath}
\usepackage{braket}
\usepackage{titlesec}
\usepackage{lipsum}
\usepackage{algpseudocode}
\usepackage{todonotes}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{3}
\captionsetup{singlelinecheck=false,justification=raggedright}
\begin{document}
\title{title}
\author{Marouane}
\date{\today}
\begin{abstract}
the content of the abstract
\end{abstract}
\maketitle
\tableofcontents

之后会出现分页符,然后目录会从新页面开始,这是我不想要的,我希望目录紧跟在摘要之后

答案1

要删除目录前的分页符,您需要将其替换\tableofcontents{\let\clearpage\relax \tableofcontents}。但就目前情况而言,摘要和目录之间仍然有标题页,它也会开始一个新页面。

相关内容