Perhaps this is a silly question. I got several Underfull \vbox (badness 10000) in my document, and to find the reason, I simplified the code all the way to
\documentclass{book}
\usepackage{geometry}
\linespread{1.25}
\usepackage{blindtext}
\begin{document}
\blindtext[10]
\end{document}
And the problem remains:
Underfull \vbox (badness 10000) has occurred while \output is active [1] [2]
Is there any way to solve this?
geometrywith the optionheightrounded. I'm looking for a duplicate, I'm sure the question popped up already. And no, it's no silly question;-)– campa Feb 01 '21 at 08:37geometry. – campa Feb 01 '21 at 08:42heightroundedoption does work in this example, but with\linespread{1.25}added, I still getUnderfull \vbox. – Jinwen Feb 01 '21 at 08:49\raggedbottomcause any visible change to the document? I didn't see any difference in the final result, but gladly the warnings are now gone. – Jinwen Feb 01 '21 at 08:58\textwidth300.5 pt wide and a monospace font with characters 10pt wide: it can not work, in \raggedright each line is .5pt short but no warnings, in justified text every line will warn it is .5pt short, that is what is happening here but for vertical stretch – David Carlisle Feb 01 '21 at 09:08