How do I make multi-page landscape tables in LaTeX

16,241

See the longtable environment:

\begin{landscape}
  \begin{longtable}{|c|c|c|c|c|}
    ...
  \end{longtable}
\end{landscape}
Share:
16,241
Tim
Author by

Tim

Updated on June 09, 2022

Comments

  • Tim
    Tim almost 2 years

    The title is pretty much the extent of my question. I am trying to insert a large table into a document using the xtabular environment. If I wrap the xtabular environment in a landscape environment, then the bottom of my table gets chopped off. Does anyone have any better suggestions? Thanks

    
    \begin{landscape}
    \singlespace
    \begin{xtabular}{|c|c|c|c|c|}
        \hline
          some & stuff & ... & \\
    \end{xtabular}
    \end{landscape}
    

    Tim