使用 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}