On Sun, 5 May 2002, Dekel Tsur wrote:
> On Sat, May 04, 2002 at 03:00:59PM +0100, Jan Warnking wrote:
> > On Fri, 3 May 2002, Herbert Voss wrote:
> > > > Basically, I'd like to have two \sidewaystable 's on one page. But Latex
> > > > won't let me put a sidewaystable into a minipage...
> > >
> > > that's right, it's only possible other way round.
> > > please send an example file.
> >
> > I attached a lyx file containing the two tables as \sidewaystable, but on
> > successive pages.
>
> Nothing prevents you from putting two or more captions in a single float.
> See attached file.
That's it! Thank you Dekel! Knowing the solution it seems too simple...
The problem was:
Putting two rotated tables, each with a caption, next to each other on one
page, all of this inside a float.
The solution:
In preamble: \usepackage{rotating}
In document:
\begin{sidewaystable}
\centering
[your first table here]
\caption{caption for first table}
\bigskip (or \vspace{2cm} or something, whatever looks good)
[your second table here]
\caption{caption for second table}
\end{sidewaystable}
All text, except captions and tables, is ERT.
Again thank you all!
Jan