我正在使用以下模板:
https://github.com/kks32/phd-thesis-template/releases/tag/v2.2
(请提取并编译论文.tex)
关于摘要 ( \begin{abstract} ... \end{abstract}
),我迫切希望将罗马页码添加到摘要页脚中。事实上,如果摘要超过 2 页或更多页,我希望页码始终位于页脚中(请为此生成一些随机的 lorem ipsum)。示例:
我尝试\thispagestyle{plain}
在抽象环境中使用或更改(第 1137 行)中的\newenvironment{abstract}
命令classes/PhDThesisPSnPDF.cls
,但没有任何成功。任何帮助都值得感激。
答案1
在前面直接添加以下代码块\begin{document}
:
\makeatletter
\renewenvironment{abstract} {
% Normal abstract in the thesis
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Abstract}
\fancyhead{}
\fancyfoot[CO,CE]{\thepage}
}
\makeatother
这仍然保留了主要规则。删除该规则将使您与 CUED 论文办公室的要求相差甚远。选项abstract
功能已被删除,将不再起作用。