使段落标题看起来像 Koma scrreprt 中的(子)部分标题

使段落标题看起来像 Koma scrreprt 中的(子)部分标题

我正在使用 scrreprt 类用 Koma-script 编写文档。我正在使用命令\paragraph{My paragraph's title}设置我的“subsubsubsection”标题。但是,Koma-script 使这些标题看起来很奇怪:它们显示在段落缩进的位置,就像这样:

我的段落标题 这就是我这段话的内容...

不过,我希望标题看起来像 section、subsection 和 subsubsection 的标题:

1.1.1.1.1. 我的段落标题

为此,我使用命令\renewcommand*{\paragraphformat}{\hspace*{75pt}\makebox[60pt][l]{\theparagraph\autodot\hfil}}。我对部分等使用相同的命令,它对它们很有效,但对段落无效。

你能帮助我吗?

谢谢 !

答案1

您必须切换 runin 选项:

\documentclass{scrreprt}
\setcounter{secnumdepth}{5}
\RedeclareSectionCommand[runin=false,afterskip=0pt,afterindent=false]{paragraph}
\begin{document}
\subsubsection{abc}
\paragraph{paragraph}some text
\end{document}

在此处输入图片描述

相关内容