Draw a table in vertical display instead of horizontal display
I think you want the lscape
package, can be usefully used for this purpose as follows:
\begin{landscape} \begin{table} \centering \begin{tabular}{....} ....... \end{tabular} \end{table} \end{landscape}
EDIT 2nd solution:
Another possibility is to use the sideways
environment from the rotating
package:
\begin{sideways} \begin{tabular} ... \end{tabular} \end{sideways}
And for floating tables sidewaystable
.