我有以下示例代码:
\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
更改为正值:paragraph
subparagraph
\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}