[Tex/LaTex] Center table on landscape page

floatslandscapetablesvertical alignment

I have a rather wide table for which I have a designated page in landscape mode. The rest of the document is in portrait mode. Currently, the first row of the table begins at the very top of the page and ends somewhere in the middle. I'd like the table to be vertically centered though. How can I achieve this? I'm using the tabular environment.

Best Answer

OK, I got it. Initially, I only had

\begin{landscape}
\centering
\begin{tabular}{*12c}
% Content goes here
\end{tabular}
\end{landscape}

I had to place the table in a table environment, i.e.

\begin{landscape}
\begin{table}
\centering
\begin{tabular}{*12c}
% Content goes here
\end{tabular}
\end{table}
\end{landscape}