KOMA:格式(子)部分编号与标题不同

KOMA:格式(子)部分编号与标题不同

我希望我的小节标题有一个斜体标题和一个直立数字:

1.2.3我的标题

我怎样才能到达这里KOMA?我只得到了斜体的完整标题:

\documentclass{scrbook}
\usepackage{blindtext}
\addtokomafont{disposition}{\rmfamily}
\addtokomafont{subsection}{\itshape}
\begin{document}
\blinddocument
\end{document}

或者我需要吗titlesec

答案1

\documentclass{scrbook}
\usepackage{blindtext}
\addtokomafont{disposition}{\rmfamily}
\addtokomafont{subsection}{\itshape}

\newcommand\subsectionnumberfont{\upshape}
\renewcommand*{\othersectionlevelsformat}[3]{\csname#1numberfont\endcsname#3\autodot\enskip}

\begin{document}
\blinddocument
\end{document}

在此处输入图片描述

编辑

使用较新版本的 scrbook,您可以这样做:

\documentclass{scrbook}
\usepackage{blindtext}
\addtokomafont{disposition}{\rmfamily}
\addtokomafont{subsection}{\itshape}
\renewcommand*{\subsectionformat}{\upshape \thesubsection\autodot\enskip}

\begin{document}
\blinddocument
\end{document}

相关内容