views:

300

answers:

1

I have a large table I want to include in a LaTeX document. It is too wide for a page, so I want to rotate it 90 degrees and have it landscape. Then it will be too tall for the page, so I want it to span multiple pages.

I have managed to get it landscape with:

\begin{landscape}
\begin{table}[htdp]
\begin{center}
\begin{tabular}{c|l|c|l|c|c|c}
     [ Data here ]
\end{tabular}
\end{center}
\end{table}
\end{landscape}

So the question is, how can I now get it to span multiple pages?

+3  A: 

Have a look at the longtable package.

Alok
Thank you, exactly what I needed
Paul