I'm preparing some text where pictures shall be placed really "H"ere. Due to the mix of text and images, that actually works pretty well. But I keep one page with not enough content (larger image starts on the next page) and I would love to push the remaining paragraphs to the top of the page, and not spread them evenly; I'd actually favour to have some free space at the bottom of the page than between the paragraphs. A simple \vfill (see example below) didn't help me though:
\documentclass[a5paper,twoside]{article}
\usepackage[demo]{graphicx}
\usepackage[framefit=yes,heightadjust=all,framearound=all]{floatrow}
\usepackage{float}
\usepackage{lipsum}
\begin{document}
\lipsum[2]
\lipsum[3]\vfill
\begin{figure}[H]
\centering
\begin{floatrow}
\ffigbox[0.5\textwidth]{
\includegraphics[width=\linewidth,keepaspectratio=true]{74.jpeg}
}{
\caption{some}
\label{fig:74}
}
\ffigbox[0.5\textwidth]{
\includegraphics[angle=90,width=\linewidth,keepaspectratio=true]{75.jpeg}
}{
\caption{some}
\label{fig:74}
}
\end{floatrow}
\end{figure}
\lipsum[2]
\end{document}
Any hint how to get the \vfill to work? Thanks!

\newpageinstead of\vfillwill keep the paragraphs without space. Then you can add space for all paragraphs with\parskipor to specific paragraphs with\vspace– koleygr Oct 26 '17 at 23:45\raggedbottomdirective in the preamble. – Bernard Oct 27 '17 at 00:27\raggedbottomyou get ragged bottoms, which aren't very nice. – ShreevatsaR Oct 27 '17 at 03:54\enlargethispage{some length}. In ordinary text, usually there should be no difference (except perhaps due to controlling of widows and orphans). – Bernard Oct 27 '17 at 09:45