Roland Lechner wrote:
The thing I want to achieve is to have the 2 blocks in the same
> line (a little separated).

You can't have two block on the same line without special
arrangements, by definition.
A) Redo the table you have so that you have two cells instead of
one
B) Embed a two-column, one-row table and place the two text snippets
in the two cells
C) Use fo:list, like this (instead of fo:block)
      <fo:list-block>
        <fo:list-item>
          <fo:list-item-label end-indent="label-end()">
            <fo:block>90</fo:block>
          </fo:list-item-label>
          <fo:list-item-body start-indent="body-start()">
            <fo:block text-align="end">90%</fo:block>
          </fo:list-item-body>
        </fo:list-item>
      </fo:list-block>

The following does *not* work (perhaps it should, i'm
not sure):
      <fo:block>
         <fo:inline>90</fo:inline>
         <fo:inline text-align="end">90%</fo:inline>
      </fo:block>

J.Pietschmann



Reply via email to