如何在 Cambridge Phd Latex 模板中添加页面?

如何在 Cambridge Phd Latex 模板中添加页面?

我想在论文的“摘要”页之前添加一个名为“批准”的页面。我使用的是 Cambridge Phd Latex 格式。

答案1

请检查文件thesis.tex,这是该论文的主要文件,由该课程支持PhDThesisPSnPDF

您将在此找到:

\include{Dedication/dedication}
\include{Declaration/declaration}
\include{Acknowledgement/acknowledgement}
\include{Abstract/abstract}

在代码中稍微搜索一下,你就可以找到环境的定义acknowledgements

\newenvironment{acknowledgements}{
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Acknowledgements}
\thispagestyle{empty}
}

您可以复制它并将其更改为您需要的内容:

\newenvironment{approval}{
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Approval}
\thispagestyle{empty}
}

将其添加到您的前言中thesis.tex(命令之前\begin{document}),并为您的添加一些内容 approval

...
\include{Dedication/dedication}
\include{Declaration/declaration}
\include{Acknowledgement/acknowledgement}

\begin{approval}
This is where you write your Approval ...
\end{approval}

\include{Abstract/abstract}
...

我没有安装该类,因此上面的代码未经测试,但我认为它应该可以编译。请尝试并报告结果。

相关内容