将此背面书类模板更改为双面时,首页前出现神秘的空白页

将此背面书类模板更改为双面时,首页前出现神秘的空白页

我正在定制此 overleaf 模板为我的论文,但我希望它是双面的。但是,如果我在书类中将单面改为双面,则在首页之前会出现一个神秘的第一页,底部有数字 2。将

\cleardoublepage

在包含首页之前不起作用。@Werner 给出的解决方案这里,即包括

usepackage{atbegshi}% http://ctan.org/pkg/atbegshi
\AtBeginDocument{\AtBeginShipoutNext{\AtBeginShipoutDiscard}}

在序言中,也不起作用。增加几何包设置中的边距不起作用。我该怎么办?任何帮助都非常感谢。

\justify按照 David 的要求,我设法获取了模板的最小版本,而问题则来自于包的使用ragged2e

\documentclass[twoside]{book}
\usepackage{ragged2e}
\begin{document}
\justify
\begin{titlepage}
      ...TITLE PAGE...
\end{titlepage}
\end{document}

答案1

\justify类似于\center和 永远不应该以命令形式使用,它们是\begin{justify}和的内部实现\begin{center}

声明表格是\justifying(但几乎永远不需要,因为默认是对齐。但\justifying不会导致额外的页面。

答案2

使用\documentclass[11pt,twoside,openright]{book}

(1条评论%\AtBeginDocument{\AtBeginShipoutNext{\AtBeginShipoutDiscard}}

(2)请勿使用\justify

\begin{document}
%\justify
%frontmatter
\frontmatter
\pagestyle{empty} %disable headers and footers
\pagenumbering{roman} %use roman page numbering in the frontmatter

\input{frontmatter/frontpage}

相关内容