I'm using this template: https://www.overleaf.com/5498197zgcfjy#/17625707/
How can I (modify the document to) leave out the name of the author in the abstract?
I'm using this template: https://www.overleaf.com/5498197zgcfjy#/17625707/
How can I (modify the document to) leave out the name of the author in the abstract?
The document class - MastersDoctoralThesis.cls - inserts a large preamble when you call \begin{abstract}. Here's the definition of that (lines 293-316):
\newenvironment{abstract}{
\checktoopen
\tttypeout{\abstractname}
\null\vfil
\thispagestyle{plain}
\begin{center}
{\normalsize \MakeUppercase{\univname} \par} % University name in capitals
\bigskip
{\huge\textit{\abstractname} \par}
\bigskip
{\normalsize \facname \par} % Faculty name
{\normalsize \deptname \par} % Department name
\bigskip
{\normalsize \degreename\par} % Degree name
\bigskip
{\normalsize\bfseries \@title \par} % Thesis title
\medskip
{\normalsize \byname{} \authorname \par} % Author name
\bigskip
\end{center}
}
{
\vfil\vfil\vfil\null
}
This is something you could modify to reach your goals. Specifically, deleting lines 309-310:
\medskip
{\normalsize \byname{} \authorname \par} % Author name
should leave you with:
\begin{abstract} and \end{abstract} ?
– faf
Jun 17 '16 at 11:50
MastersDoctoralThesis.cls. In that file you should be able to see what I show above. If it is not visible, then the project you shared may have been altered and you should start anew.
– Werner
Jun 17 '16 at 13:43
.cls as part of it.
– Werner
Jun 17 '16 at 17:05
\providecaptionname{american,australian,british,canadian,english,newzealand,UKenglish,USenglish}{\byname}{}works. – Jérôme Dequeker Jun 17 '16 at 10:49\begin{document}– Jérôme Dequeker Jun 17 '16 at 11:15