我希望目录中的章节名称统一大写,无论是否是句子大小写。
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}