Tables in Inline Object

2002-05-07 Thread joseph berdat
Hello,

I would like to have 2 tables side by side on a single page.

  +---+---+ +---+---+
  |   |   | |   |   |
  |   T1  | |   T2  |
  |   |   | |   |   |
  +---+---+ +---+---+

I try to do this by using fo:inline but it doesn't work?

Is there another solution?

Thank!


Re: Tables in Inline Object

2002-05-07 Thread J.Pietschmann
joseph berdat wrote:
I would like to have 2 tables side by side on a single page.
  +---+---+ +---+---+
  |   |   | |   |   |
  |   T1  | |   T2  |
  |   |   | |   |   |
  +---+---+ +---+---+
I try to do this by using fo:inline but it doesn't work?
It shouldn't. You would have to use fo:inline-container
but this isn't implemented in FOP yet.
The generic answer is to put the tables into blind table:
+-+
| +---+---+ +---+---+ |
| |   |   | |   |   | |
| |   T1  | |   T2  | |
| |   |   | |   |   | |
| +---+---+ +---+---+ |
+-+
Don't set a border on the outer table, it's just there
for demonstration.
You can also try a two-column setup of the page, list-block
and absolutely placed block containers, whatever fits best.
J.Pietschmann