节后单倍行距引入额外空间

节后单倍行距引入额外空间

使用该软件包,setspace我可以更改行距。这很好用。当我将命令放在\singlespacing某个部分之后时,它会引入额外的空间。MWE:

\documentclass[a4paper,11pt]{article}
\usepackage[shorthands=off,bidi=basic,english, ngerman]{babel}
\usepackage{setspace} 
\onehalfspacing 
\usepackage{kantlipsum}

\begin{document}
    \title{merry setspace christmas test}
    \author{who cares?}
    \date{2011-12-19}
    \maketitle
    \section{Kant - 1}
    \kant[1]
    \subsection{Kant - 2 }
    \singlespacing  % <----------------------------------
    \kant[2]
\end{document}

有没有什么办法可以防止这种情况发生?

答案1

把 放在\singlespacing前面 而\subsection{Kant - 2}不是 后面。

相关内容