You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-users@xmlgraphics.apache.org by s-...@artefrance.fr on 2003/02/21 10:17:25 UTC

Re: Table's warning (was More newbie hyphenation and option flag issues ...)

>> [WARNING] table-layout=auto is not supported, using fixed!

For this one, just use the attribute table-layout of fo:table tags :

<fo:table table-layout="fixed">

[WARNING] current implementation of tables requires a table-column for 
each column, indicating column-width

To avoid this one, put a table-column tag for each column in your table 
after the fo:table tag :

<fo:table table-layout="fixed">
  <fo:table-column column-width="10mm" />
  <fo:table-column column-width="87.5mm" />
  <fo:table-column column-width="15mm" />
  <fo:table-column column-width="87.5mm" />
  <fo:table-column column-width="10mm" />
  <fo:table-body>
        <fo:table-row height="5mm">

<!-- End of the table -->

Cheers,

Simon



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org