修改目录的条目字体

修改目录的条目字体
\documentclass{article}
\usepackage{tocloft}

\begin{document}
\tableofcontents

\section{Section title}
Section text

\subsection{Subsection title}
Subsection text

\end{document}

如何使目录中的“小节标题”字体变为斜体?(不在文档正文中)

答案1

\documentclass{article}
\usepackage{tocloft}

\renewcommand{\cftsubsecfont}{\itshape}
\renewcommand{\cftsubsecpresnum}{\upshape}

\begin{document}
\tableofcontents

\section{Section title}
Section text

\subsection{Subsection title}
Subsection text

\end{document}

托克洛夫特样本

参见手册tocloft更多细节。

答案2

\cftsubsecfont您可以重新修改控制小节标题输出的命令的定义

\documentclass{article}

\usepackage{tocloft}
\renewcommand{\cftsubsecfont}{\itshape}

\begin{document}
\tableofcontents

\section{Section title}
Section text

\subsection{Subsection title}
Subsection text

\end{document}

在此处输入图片描述

相关内容