标题页后分页符

标题页后分页符

我现在已使用以下方法在文档中制作了标题页

\begin{titlepage}
stuff
\end{titlepage}

这很好,但现在当我尝试在标题页之后和之前插入空白页时

\begin{abstract}
stuff
\end{abstract}

Latex 不听使唤,在那里放了一张空白页!有人能帮我吗?

PS:我不知道在使用 Latex 时使用 titlepage 环境是否是“良好”的做法,因此如果有人对此有任何评论,我们将非常欢迎。

PPS 我的序言中的相关内容是

\documentclass[a4paper, twoside, 11pt]{report}

PPPS MWE:

\documentclass[a4paper, twoside, 11pt]{report}

%irrelevant stuff

\begin{document}

\begin{titlepage}

some nonsense

\end{titlepage}

%Tried \pagebreak,\clearpage,\newpage,combinations thereof

\begin{titlepage}

Abstract 

\end{titlepage}

%Tried as above

\tableofcontents

Some more text

\end{document}

答案1

使用\cleardoublepage将在此处填充空白页。它确保下一个内容(无论它是什么)位于右侧。

完整代码

\documentclass[a4paper, twoside, 11pt]{report}

%irrelevant stuff

\begin{document}

\begin{titlepage}

some nonsense

\end{titlepage}

\cleardoublepage

\begin{titlepage}

Abstract 

\end{titlepage}

%Tried as above

\tableofcontents

Some more text

\end{document}

答案2

不要使用该report课程,但是book

\documentclass[a4paper, twoside, 11pt]{book}
\usepackage{emptypage}

\pagestyle{plain}

%irrelevant stuff

\begin{document}

\begin{titlepage}

some nonsense

\end{titlepage}

\begin{titlepage}

Abstract 

\end{titlepage}

%Tried as above

\tableofcontents

Some more text

\end{document}

相关内容