kks32 / phd-thesis-template

A LaTeX / XeLaTeX / LuaLaTeX PhD thesis template for Cambridge University Engineering Department (CUED)
http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/ThesisStyle/
MIT License
820 stars 392 forks source link

Change title of Absract #241

Open TorkelE opened 1 year ago

TorkelE commented 1 year ago

Currently, the abstract title is just "Abstract:

image

However, according to the instructions at: https://www.cambridgestudents.cam.ac.uk/your-course/examinations/graduate-exam-information/after-examination/degree-approval-and-1

image

Is there a way to change the header on the abstract page from "Abstract" to the thesis title and my name?

kks32 commented 1 year ago

Please have a look at the README class options

There is an option for Document Class abstract: This option enables only the thesis title page and the abstract with title and author to be printed.

TorkelE commented 1 year ago

Thank you, while this provides the desired abstract page: image the rest of the thesis is not present. Is there a way to get the abstract change, but also compile the full thesis?

GR8DAN commented 1 year ago

You should be able to modify the class file to achieve the desired effect.

In PhDThesisPSnPDF.cls change line 1135:

\chapter*{\centering \Large \@abstracttitle}

to these lines:

\begin{center}
    { \Large {\bfseries {\@title}} \par}
    {{\Large \vspace*{1em} \@author} \par}
\end{center}
\begingroup
    \renewcommand{\cleardoublepage}{}
    \renewcommand{\clearpage}{}
    \chapter*{\centering \Large Abstract}
\endgroup

That should achieve the desired result