I am trying to create tables using an xsl-fo and an xml that has varying
sized tables of 2-3 columns.
I figured if I create 3 columns and specify the table-layout as "auto" it
would do the trick, as in: 
    <xsl:template match="Table">
        <fo:table table-layout="auto">
            <fo:table-column/>
            <fo:table-column/>
            <fo:table-column/>
            <xsl:apply-templates select="HeaderRow"/>
            <fo:table-body>
                <fo:table-row space-before=".3cm">
                    <xsl:apply-templates select="Row"/>
                </fo:table-row>
            </fo:table-body>
        </fo:table>
When I try the transformation in the command prompt I get the following:
[WARNING] table-layout=auto is not supported, using fixed!
[ERROR] At least one of minimum, optimum, or maximum IPD must be specified
on table.
So how do I change "fixed" to "relative", and what is IPD, and where do I
specify it?
All I could find with those initials was inline-progression-dimension, which
doesn't appear to take the requested values. If this problem is defined
somewhere I haven't discovered yet, please give me a reference.
Bonnie



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to