I have my last section which consists only of {tabular}, it is longer than 1 page, so I need to split it to 2 pages.
So I have done something like that, hoping it displays the first {tabular} on the page before the last page, and the second {tabular} on the last page of my document:
\section{section_name}
\begin{tabular}{llll}
....
\end{tabular}
\begin{tabular}{llll}
....
\end{tabular}
\end{document}
But it still tries to display everything in 1 page, thus the lines go beyond the bottom border, and some lines in the end could not be displayed.
Could anyone tell me how to amend that?
longtableorsupertabularinstead. Both allow tables to break over pages. See the answers to In LaTeX, how can I make a table that takes up more than a single page? which seems to be a duplicate. – Martin Scharrer May 23 '11 at 11:20\raggedbottomin this section. – Ulrike Fischer May 23 '11 at 11:24\vfill\pagebreakbetween the two tabulars. – kgr May 23 '11 at 18:05