将目录标题格式化为与节标题匹配

将目录标题格式化为与节标题匹配

我正在尝试格式化我的文档,使目录标题看起来像我的所有部分标题。部分标题居中,字体大小与目录中的字体大小不同。

\documentclass[12pt]{report}
\renewcommand{\thesection}{\arabic{section}}
\usepackage{lipsum}

\title{Test Thesis}
\author{John Doe}

\begin{document}
\maketitle
\pagenumbering{Roman}

\addcontentsline{toc}{section}{Abstract}
\section*{\centering{Abstract}}
\lipsum

\renewcommand{\contentsname}{\centering Table of Contents}
\tableofcontents

\clearpage
\newpage
\pagenumbering{arabic}
\addcontentsline{toc}{section}{Background}
\section*{\centering{Background}}
\lipsum

\end{document}

在此示例中,目录居中,但实际文档中的完全相同的代码并未使其居中。它仍然太大。

*编辑:工作 MWE

答案1

出于某种原因,我认为目录只在 中有效\documentclass{report}。将其更改为\documentclass{article}解决了我的问题。谢谢大家的帮助。

相关内容