我正在使用 scrbook 类,并希望将子小节的格式设置为与段落完全相同(如图所示)。我尝试复制\paragraphformat
以覆盖\subsubsectionformat
,但没有任何效果。我希望有人能帮助我。谢谢!
梅威瑟:
\documentclass{scrbook}
\usepackage{lipsum}
\usepackage[bookmarksdepth=4]{hyperref}
\renewcommand*{\subsubsectionformat}{\theparagraph\autodot\enskip}
\begin{document}
\subsubsection{Title of subsubsection}
\lipsum[1]
\paragraph{Title of subsubsection}
\lipsum[1]
\end{document}
答案1
使用负值afterindent
和默认值runin=bysign
:
\RedeclareSectionCommand[
%runin=bysign,% default
afterskip=-1em
]{subsubsection}
或者runin=true
:
\RedeclareSectionCommand[
runin=true,
afterskip=1em
]{subsubsection}
例子:
\documentclass{scrbook}
\usepackage{lipsum}
\usepackage[bookmarksdepth=4]{hyperref}
\RedeclareSectionCommand[
runin=true,
afterskip=1em
]{subsubsection}
\begin{document}
\subsubsection{Title of subsubsection}
\lipsum[1]
\paragraph{Title of subsubsection}
\lipsum[1]
\end{document}