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

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

See the longtable environment:

\begin{landscape}
  \begin{longtable}{|c|c|c|c|c|}
    ...
  \end{longtable}
\end{landscape}
link|improve this answer
nice. I had to do this today, and I used this approach exactly. you can insert a \caption{} and \labe{} BEFORE the \end{longtable} if you need them. – darren Apr 27 '10 at 6:15
Thanks that worked perfectly – Tim Apr 27 '10 at 15:53
Ubuntu 9.10/texlive seems to be choking on landscape--any thoughts on where to find that? A cursory Google seems to suggest that it's out of date, but lscape isn't working, either. – aresnick May 24 '10 at 21:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.