我如何修改此模板以删除空白页并在标题页上显示摘要?

我如何修改此模板以删除空白页并在标题页上显示摘要?

我正在使用以下模板:https://github.com/kks32/phd-thesis-template/releases/tag/v2.3.1

当我编译并通过 Texstudio 运行时,pdf 如下所示

                    Title page (1)  
Blank page (2)        Abstract (3)  
Blank page (4)      Dedication (5)  
Blank page (6)  Acknowlegements(7)  
Blank page (8)

我怎样才能删除这些空白页并只保留双页文本?

答案1

目前,声明、致谢、摘要等都使用未编号的章节进行排版(其中包含字体命令,我不太喜欢)。在发出 \chapter* 之前,所有这些定义的环境都会执行 \cleardoulepage。这与书籍类的 openany 选项相冲突。

这可能是剑桥论文办公室做出的设计决定。

您可以解决此问题。请注意,主要内容必须从右侧页面开始。您不能防止出现空白页。

\documentclass[twoside,openany]{Classes/PhDThesisPSnPDF}
\let\prepareforpagenumberchange\cleardoublepage
\let\cleardoublepage\relax
\input{thesis-info}

\geometry{outer=4cm,showframe}
\begin{document}

\frontmatter
\maketitle
\include{Abstract/abstract}
\listoftables
\prepareforpagenumberchange
\mainmatter

\chapter{Wombat}
Needs to be on a right hand page, so is depending on a working
cleardoublepage
\end{document}

相关内容