I want to get rid of excessive vertical spacing after a block quote using the report class. I am using this suggestion to customize the font size and spacing of the blockquote. It appears as if the last paragraph is forced to be aligned with the bottom of the page, and I would like to avoid that.
\documentclass[12pt, twoside]{report}
\usepackage{lipsum} % for filler text
\usepackage{setspace} % for \onehalfspacing and \singlespacing macros
\onehalfspacing
\usepackage{etoolbox}
\AtBeginEnvironment{quote}{\par\singlespacing\small}
\begin{document}
\section{Some title}
\lipsum[2] % filler text
\begin{quote}
\lipsum[2]
\end{quote}
\lipsum[5]
\section{Another title}
\lipsum[2]
\end{document}

\raggedbottomto allow that. – barbara beeton Mar 16 '22 at 02:15\enlargethispage. – egreg Mar 16 '22 at 09:54