Scrbook と Setspacing によるオーバーフル Vbox

Scrbook と Setspacing によるオーバーフル Vbox

Overfull \vbox (1.39674pt too high) has occurred while \output is active []次の MWE では、常に同じ値のbadbox 警告が多数表示されます1.39674pt
これは、章の最初のページを除くすべてのページに表示される章のタイトルの見出しに関連しているようです。

\documentclass[
    draft,
    headsepline=true
]{scrbook}

\usepackage[onehalfspacing]{setspace}
\usepackage{blindtext}

\begin{document}
  \chapter{Introduction}
  \Blindtext
  \chapter{Results}
  \Blindtext \Blindtext
  \section{Good results}
  \Blindtext \Blindtext
  \section{Mediocre results}
  \Blindtext \Blindtext
  \section{Bad results}
  \Blindtext \Blindtext
  \chapter{Conclusion}
  \Blindtext
\end{document}

これを修正するにはどうすればいいですか? また、KOMA スクリプト ドキュメントクラスで行間隔を広げる推奨方法は何ですか?

答え1

行間を変更しても、文字数は再計算されません。

使用:

\usepackage[onehalfspacing]{setspace}
\recalctypearea

typearea行間隔が変更されたことを通知します(KOMA によって使用されます)。

関連情報