Koma-script 类scrreprt
不提供 的编号\subsubsection
。如果可能的话,我希望有\subsubsection
这样的编号\subsection
。我发现一个办法但问题是要求更高级的格式,这不是我想要的。
答案1
在 KOMA 类中,计数器secnumdepth
控制标题编号的级别。 的默认值为scrreprt
,\subsectionnumdepth
即是仍获得编号的最低级别,而以下所有级别均不获得编号。因此,解决方案是将\subsection
的值设置为。secnumdepth
\subsubsectionnumdepth
最小示例:
\documentclass{scrreprt}
\setcounter{secnumdepth}{\subsubsectionnumdepth}
\begin{document}
\chapter{My chapter}
\section{A section}
\subsection{The subsection}
\subsubsection{New subsubsection}
\end{document}