
以下 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 使用)行空間已更改。