使用以下代码将章节变为大写,
\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}
但发现目录章节标题尚未大写。我怎样才能在目录中反映章节标题的大小写?