scrbook 和 setspacing 导致 vbox 溢出

scrbook 和 setspacing 导致 vbox 溢出

以下 MWE 给我很多 badbox 警告,Overfull \vbox (1.39674pt too high) has occurred while \output is active []其值始终相同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 使用)行距已改变。

相关内容