我怎样才能在目录中反映章节标题的大小写?

我怎样才能在目录中反映章节标题的大小写?

使用以下代码将章节变为大写,

\documentclass{book}
\usepackage{titlesec}

\begin{document}

\tableofcontents

\makeatletter
\renewcommand{\@chapapp}{{CHAPTER}}
\makeatother

\titleformat{\chapter}[display]
  {\large \bfseries \centering}{\chaptertitlename\ \thechapter}{0pt}{\MakeUppercase}{\large}
\titlespacing*{\chapter}{-10pt}{-20pt}{25pt}

\chapter{Introduction}

\section{Background}
Background

\subsection{Story 1}
\subsection{Story 2}

\end{document}

在此处输入图片描述

但发现目录章节标题尚未大写。我怎样才能在目录中反映章节标题的大小写?

相关内容