I am using vspace for producing a white space for people to write on between blocks of text. When the vspace happens to be at the end of a page, the next block of text will start at the top of the next page, while it is desired that in such case, the "remainder" of the vspace should spill the next page. How can I change the code to achieve that? Thanks.
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\lipsum[2-5] % towards the end of the page
\vspace{15cm} % 15 cm of white space desired
\lipsum[2-3] % appears at the top of the next page
\end{document}




