目录 - 章节标题采用句子大小写

目录 - 章节标题采用句子大小写

我希望目录中的章节名称统一大写,无论是否是句子大小写。

sectsty我现在使用和实现了部分名称的统一\allsectionsfont{\normalfont\scshape}

有没有类似的东西\tableofcontents

这是我的 MWE,

\documentclass[paper=a4, fontsize=11pt]{scrartcl} % A4 paper and 11pt font size

\usepackage{sectsty} % Allows customizing section commands
\allsectionsfont{\normalfont\scshape} % Make all sections centered, the default font and small caps

\begin{document}
\tableofcontents
\section{Properly Formatted Section Name}
\section{Not so properly Formatted Section name}
\end{document}

在此处输入图片描述

答案1

无需sectsty使用scrartcl。使用

\addtokomafont{disposition}{\normalfont\scshape}

代码:

\documentclass[paper=a4, fontsize=11pt]{scrartcl} % A4 paper and 11pt font size

%\usepackage{sectsty} % Allows customizing section commands
%\allsectionsfont{\normalfont\scshape} % Make all sections centered, the default font and small caps

\addtokomafont{disposition}{\normalfont}               %% add here

\begin{document}
\tableofcontents
\addtokomafont{disposition}{\normalfont\scshape}        %% add here
\section{Properly Formatted Section Name}
\section{Not so properly Formatted Section name}
\end{document}

在此处输入图片描述

相关内容