phd-thesis-template icon indicating copy to clipboard operation
phd-thesis-template copied to clipboard

Change title of Absract

Open TorkelE opened this issue 3 years ago • 3 comments

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?

TorkelE avatar Oct 10 '22 15:10 TorkelE

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.

kks32 avatar Oct 14 '22 01:10 kks32

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?

TorkelE avatar Oct 14 '22 08:10 TorkelE

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

GR8DAN avatar Oct 28 '22 10:10 GR8DAN