\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
更多细节。