从摘要中删除论文标题和作者姓名

从摘要中删除论文标题和作者姓名

我正在使用这个模板: https://www.overleaf.com/latex/templates/template-for-a-masters-slash-doctoral-thesis/mkzrzktcbzfl

我已经打开了consistentlayout,但摘要中仍然显示作者姓名和论文标题。我该如何解决这个问题?

在此处输入图片描述

答案1

将以下几行添加到您的标题(我将它们放在“边距设置”注释之前):

\DeclareDocumentEnvironment{abstract}{ O{} }{%
    \addchap*{\abstractname}%
    \bigskip\noindent\ignorespaces
}%
{}

consistentlayout为了进行比较,设置选项时模板执行的代码(来自这里):

\DeclareDocumentEnvironment{abstract}{ O{} }{%
    \addchap*{\abstractname}%
    {\chapteralign\normalsize\abstractauthorfont \authorname \par} % Author name
    \vspace{\baselineskip}
    {\chapteralign\parbox{.7\linewidth}{\chapteralign\normalsize\itshape\abstracttitlefont\@title}\par}% Thesis title
    \bigskip\noindent\ignorespaces
}%
{}

所以我只是删除了在摘要页中插入作者姓名和论文标题的行。

答案2

尽可能简单方法是使用

\addchap{Abstract} 

Abstract text here

而不是重新定义一些命令

相关内容