[Tuglist] Two tables in a page vertically

Radhakrishnan CV tuglist@tug.org.in
Tue, 1 Jan 2002 12:27:20 +0530 (IST)


On Mon, 31 Dec 2001 at 18:09, Debiprosad Roy Mahapatra wrote:

   I want to include two tables in the same page in vertical
   (landscape) format. Using `\rotatebox{90}{---}' I could able
   to rotate only single table in one page.

\usepackage{lscape}  %% in the preamble


\begin{landscape}
\begin{table}

\begin{minipage}{.475\textheight}
\caption{caption of the first table}
\begin{tabular}{lcr}
a & b & c\\
...
\end{tabular}
\end{minipage}
\hfill
\begin{minipage}{.475\textheight}
\caption{caption of the second table}
\begin{tabular}{lcr}
a & b & c\\
...
\end{tabular}
\end{minipage}

\end{table}

\end{landscape}

The above can help you.   

-- 
Radhakrishnan