I have a table that takes up a full page, but I want it to start on a page that already has some text and then continue onto the next page (i.e. it's ok if the table gets broken up and spans two pages). It is a simple two column table:
\begin{table}[h] \centering \begin{tabular}{| p{.20\textwidth} | p{.80\textwidth} |} \hline foo & bar \\ \hline foo & bar \\ \hline ... \end{tabular} \end{table} I guess I need longtable? How do I use it?