章节中有小型大写字母,但目录中没有

章节中有小型大写字母,但目录中没有

使用 LaTeX,我想将所有章节标题设置为小写字母,但我需要\textsc在目录中“取消”。这可能吗?

我目前正在这样做:

\section[Introduction]{\textsc{Introduction}}

有没有自动化的方法?

答案1

sectsty是实现目标的快速方法如果您正在使用标准文档类之一:

在此处输入图片描述

\documentclass{article}
\usepackage{sectsty}% http://ctan.org/pkg/sectsty
\allsectionsfont{\normalfont\scshape}
\begin{document}
\tableofcontents
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}

titlesec通过包选项提供了类似的简单解决方案sc

在此处输入图片描述

\documentclass{article}
\usepackage[sc]{titlesec}% http://ctan.org/pkg/titlesec
\begin{document}
\tableofcontents
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}

相关内容