[Tex/LaTex] Horizontal page for largeTables

landscapetables

I am new to LaTeX, I am writing a thesis, in which I have to add a table, the width of table is larger than text width and length can be fit in vertically. In order to fit the width of table, what is good idea to add table on horizontal page OR add it vertically without limitation of text width?

In order to add horizontally how I can do it? Response will be matter a lot.

Thanks

Best Answer

If it is OK for you to have one page rotated as a landscape where to have only the table, try the lscape package:

\usepackage{lscape} 
...
\begin{document}

Text that will end up in portrait (normal) mode

\begin{landscape}
[insert table here that will be displayed horizontally]
\end{landscape}

Rest of the text here, again in portrait mode

See also this question: How to change certain pages into landscape/portrait mode

Related Question