KOMA-Script:在段落和小段落后添加“换行符”

KOMA-Script:在段落和小段落后添加“换行符”

我有以下示例代码:

\documentclass[parskip]{scrbook}
\setcounter{secnumdepth}{5}

\begin{document}

\chapter{Chapter}
Test

\section{Section}
Test

\subsection{SubSection}
Test

\subsubsection{SubSubSection}
Test

\paragraph{Paragraph}
Test

\subparagraph{SubParagraph}
Test

\end{document}

我正在寻找一个干净的 KOMA 解决方案来实现相同的看/换行段落子段落 作为子子部分

据我所知,titlesec不建议与 KOMA 脚本一起使用。也许scrlayer-scrpage这是可行的方法?

在此处输入图片描述

答案1

使用以下方法将和afterskip更改为正值:paragraphsubparagraph

\RedeclareSectionCommands[
  afterskip=1sp
]{paragraph,subparagraph}

请注意,这1sp是可能的最小正值。

在此处输入图片描述

代码:

\documentclass[parskip]{scrbook}
\setcounter{secnumdepth}{5}

\RedeclareSectionCommands[
  afterskip=1sp
]{paragraph,subparagraph}

\begin{document}
\chapter{Chapter}
Test
\section{Section}
Test
\subsection{SubSection}
Test
\subsubsection{SubSubSection}
Test
\paragraph{Paragraph}
Test
\subparagraph{SubParagraph}
Test
\end{document}

相关内容