Is there a way to change lineskip such that the text fills up a certain space?
MWE
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\begin{minipage}[c][\textheight]{\linewidth}
\blindtext
\end{minipage}
\end{document}
Where the first line is at the top of the page, and the last line is at the bottom, as if there were a \vfill after every line.
Ideally, any solution would be fairly robust and allow a wrapfigure like
Not so minimal working example
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\noindent\begin{minipage}[c][\textheight]{\linewidth}
\blindtext
\begin{wrapfigure}{r}{2in}
\includegraphics[width=\linewidth]{picture.png}
\end{wrapfigure}
\blindtext
\end{minipage}
\end{document}


soption:( – David Carlisle Jan 09 '13 at 10:13;-)– Jan 09 '13 at 15:46wrapfigin my minipage, butwrapfigovercalculates the space needed (as if it calculates the number of lines needed before the\baselineskipchanges and then expands with the new\basselineskip). Is there any way to get around this? – Nathanael Farley Jan 09 '13 at 16:40\baselineskip=20pt plus 1pt minus 1ptjust before thewrapfigureand then reinstate\baselineskip=1\baselineskip plus 1fillat the beginning of the next paragraph,wrapfigurebehaves correctly. – Nathanael Farley Jan 09 '13 at 18:09