What I want to archieve:
Layout where \raggedbottom is in effect and parskip stretches the paragraphs as far as it is configured to do. Like so:
\raggedbottom
\setlength{\parskip}{11pt plus 5pt minus 5pt}
I would expect that parskip would stretch out the paragraphs up to 5pt (or shrink thema by 5pt), but what happens is: nothing.
If I use \flushbottom the paragraphs are stretched to fit the page no matter what I use. The only difference is the report of badness depending on if parskip is overstretching or not.
So my question would be: Is there a way to archieve the desired result of parskip stretching to the given values but not more regardless if \flushbottom is archieved or not?
Edit per request:
No stretching at all:
\documentclass{article}
\addtolength\textheight{-10.7\baselineskip}
\setlength{\parskip}{0pt plus 11pt}
%\flushbottom
\begin{document}
aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa
bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb
\pagebreak
ccc
\end{document}
Stretched to the max (far more than "allowed" by parskip):
\documentclass{article}
\addtolength\textheight{-10.7\baselineskip}
\setlength{\parskip}{0pt plus 11pt}
\flushbottom
\begin{document}
aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa\\aaaa
bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb\bbb
\pagebreak
ccc
\end{document}
I would like it to be somewhat in the middle: stretch as far as parskip allows but not further.
(Example shamelessly borrowed from How do parskip and similar parameters behave)


