I am generating a PDF automatically from a database and I want to fill the last page up with empty rows. The document looks like
\documentclass{article}
\usepackage{longtable}
\usepackage{tabu}
\begin{document}
\begin{longtabu}{l|l|l}
normal & text & here \\
% add fillers until page is full
\hline
& & \\
\hline
& & \\
\hline
% table footer should just fit on the page
\end{longtabu}
\end{document}
The question is how to create as many empty rows between the two comments automatically without increasing the page number of the document? A decent approximation would be good enough, e.g. 5 rows instead of 6 would still be good enough for this purpose. Having to pre-create 100 rows and suppressing the overflowing ones would likely also be acceptable.
