Is it possible to change table rows' height in XSL FO?

I have tried something like this:

    <xsl:template name="table.layout">
        <xsl:param name="table.content" />
        <fo:table width="100%">
            <fo:table-body start-indent="0pt">
                <fo:table-row height="10em">
                    <fo:table-cell>
                        <fo:table>
                            <fo:table-body start-indent="0pt">
                                <fo:table-row height="10em">
                                    <fo:table-cell>
                                        <fo:block>
                                            <xsl:copy-of 
select="$table.content"/>
                                        </fo:block>
                                    </fo:table-cell>
                                </fo:table-row>
                            </fo:table-body>
                        </fo:table>
                    </fo:table-cell>
                </fo:table-row>
            </fo:table-body>
        </fo:table>
    </xsl:template>

But as a result I got space before and after the table, not within the 
table row :O

Any help is really appreciated
Thank you

-- 
You received this message because you are subscribed to the Google Groups 
"asciidoc" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/asciidoc/-/BLJoJR8_FwcJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/asciidoc?hl=en.

Reply via email to