仅为目录更改标题中的左标记

仅为目录更改标题中的左标记

我在 Overleaf 中使用了我所在大学的模板,但遇到了一个外观问题:

以下是 MWE(在 Overleaf 中测试):

\documentclass[openright,twoside]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage{changepage}
\usepackage{titlesec}
\usepackage{fancyhdr}
\pagestyle{fancy}
  \fancyhead{} 
  \fancyhead[RO]{\nouppercase{\rightmark}}
  \fancyhead[LE]{\nouppercase{\leftmark}}
  \fancyfoot{} 
  \fancyfoot[LE,RO]{\thepage}

\renewcommand{\headrulewidth}{0.1pt} 
\renewcommand{\footrulewidth}{0.1pt} 

\fontsize{11pt}{15pt}\selectfont
\titleformat{\chapter}[hang]{\bfseries\fontsize{19}{25}\selectfont}{\thechapter\quad}{0pt}{}
\titleformat{\section}[hang]{\bfseries\fontsize{13}{17}\selectfont}{\thesection\quad}{0pt}{}
\titleformat{\subsection}[hang]{\bfseries\fontsize{11}{15}\selectfont}{\thesubsection\quad}{0pt}{}
\titleformat{\subsubsection}[hang]{\bfseries\fontsize{9}{13}\selectfont}{\thesubsubsection\quad}{0pt}{}

\usepackage{tocloft}
\renewcommand{\cftchapfont}{\normalfont\bfseries}

\begin{document}


\renewcommand{\contentsname}{\normalfont\bfseries Table of Contents}
\tableofcontents
\cleardoublepage

\chapter{Introduction}
\newpage
test
\chapter{test}
\section{test}
\section{test}
\section{test}
\section{test}
\section{test}
\chapter{test}
\section{test}
\section{test}
\section{test}
\section{test}
\section{test}
\chapter{test}
\section{test}
\section{test}
\section{test}
\section{test}
\section{test}
\chapter{test}
\section{test}
\section{test}
\section{test}
\section{test}
\section{test}
\chapter{test}
\section{test}
\section{test}
\section{test}
\section{test}
\section{test}
\chapter{test}
\section{test}
\section{test}
\section{test}
\section{test}
\section{test}

\chapter{Conclusion}

\end{document}

目录不止一页长,因此目录的第二页有一个漂亮的页眉,在左上角显示标题“目录”。我已调整目录标题的字体和名称以使用 normalfont 和 bfseries,因此页眉中的这个标题也是粗体。但我希望像第 4 页那样(所以不是粗体)。

我读过关于更改章节标记的文章,但只有目录才需要更改,而并非所有章节都需要更改,因此我不知道该怎么做。这可能吗?

我知道代码很丑陋,因为我不得不使用那个丑陋的模板,因此有很多解决方法。如果这不可能,那么我将接受目录中的粗体章节标记。我只是想知道这是否可行。

这里有两张图片来解释此事。

目录中的粗体章节标记 在此处输入图片描述

引言中的章节标记不加粗 在此处输入图片描述

针对 Ulrike 的建议进行编辑

\renewcommand{\contentsname}{\normalfont\bfseries Table of Contents} 在此处输入图片描述 我想要这个字体

\renewcommand{\contentsname}{Table of Contents} 在此处输入图片描述

编辑问题已解决

\usepackage[titles]{titlesec}解决了我的问题

相关内容