不想让小节编号变成斜体

不想让小节编号变成斜体

我的 MWE:

\documentclass[12pt,twoside]{article} 
\usepackage{titlesec}
\titleformat{\subsection}                                     
{\normalfont\itshape}
{\thesubsection}{1em}{}
\begin{document}
\section{Section}
\subsection{Subsection}
\end{document}

这使得小节标题为, 1.1 小节

相反,我想要 1.1子部分

答案1

这应该可以解决问题:

\titleformat{\subsection}                                     
{\normalfont}
{\thesubsection}{1em}{\itshape}

顺便说一句,请注意您应该使用 NFSS 语法:\itshape,,\bfseries&c.,而不是\it,,\bf&c'。

相关内容