将摘要标题居中并添加到 overleaf 的目录中

将摘要标题居中并添加到 overleaf 的目录中

我正在尝试将摘要添加到我的 LaTeX 文档中,但遇到了两个问题:

  1. 摘要标题不在中心
  2. 摘要未添加到目录中。

有没有办法同时做到这两点?有很多解决方案只能做到上述其中之一,而不是同时做到这两点。另外,我不希望摘要成为单独的一章。

我曾尝试在 main.tex 中使用以下内容

\begin{abstract}
    Here goes the body of the abstract
\end{abstract}

这使得摘要标题本身保持在左边。

第二次尝试我创建了一个新文件并在 main.tex 中调用它:

\thispagestyle{plain}
\begin{center}
\phantomsection
\end{center}
\begin{abstract}
    Here goes the body of the abstract
\end{abstract}
\tableofcontents

这确实将其添加到了目录中,但摘要标题又在左侧。有什么方法可以集中摘要标题并将其添加到目录中,而无需将其设为章节?如能得到任何帮助,我将不胜感激。

以下是整个班级:

\documentclass[12pt,oneside, english, singlespacing,alternatives: onehalfspacing or doublespacing,consistentlayout,]{MastersDoctoralThesis}

\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage{tikz}
\usepackage{float}
\usepackage[export]{adjustbox}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{lipsum}

\AtBeginDocument{
\hypersetup{pdftitle=\ttitle} % Set the PDF's title to your title
\hypersetup{pdfauthor=\authorname} % Set the PDF's author to your name
\hypersetup{pdfkeywords=\keywordnames} % Set the PDF's keywords to your keywords
}

\begin{document}

\begin{abstract}
\addcontentsline{toc}{chapter}{Abstract}
    Body of the content
\end{abstract}


\end{document}

相关内容