双面 amsbook,带自定义标题页

双面 amsbook,带自定义标题页

我正在使用amsbook排版双面文档并想添加自定义标题页。问题是它将目录插入到标题页之后,中间没有留下空白页。随后的章节也从“左”页开始。这是一个最小示例:

\documentclass[twoside,openright]{amsbook}

\begin{document}
 \begin{titlepage}
  This is the title
 \end{titlepage}

 \tableofcontents

 \chapter{First chapter}
\end{document}

我希望第一页(标题页)后面是一张空白页,以便目录从第三页开始,就像上面例子中用类amsbook替换时的情况一样。book

任何强制空白页的尝试,例如插入

\newpage\null\thispagestyle{empty}\newpage

之前\tableofcontents,创建空白页,然后目录再次从“左”页开始。

有什么方法可以让目录(以及后续章节)从“右侧”页面开始?

提前谢谢!

答案1

目录从第 1 页开始,因此是右侧页面,尽管它实际上是序列中的第二页。如果你这样做

\documentclass[twoside,openright]{amsbook}

\begin{document}
 \begin{titlepage}
  This is the title
 \end{titlepage}

\setcounter{page}{0}

 \tableofcontents

 \chapter{First chapter}
\end{document}

那么它仍然是第 1 页,但物理上是第三页。

相关内容