xsl-list
[Top] [All Lists]

put text at the bottom of the page

2002-10-10 10:01:06
hello all,
I am generating an FO file from XML+XSL.
On the last page of the resulting document, I wish to put a fo:block at the 
bottom of the page. Is there another way to put it than use footer?

say we have this xml:

        <contact>
                <company-name>Company</company-name>
                <address>123 Oak str.</address>
                <contact-person>John Doe</contact-person>
                <phone>123</phone>
                <fax>456</fax>
                <email>somebody(_at_)xsl(_dot_)com</email>
                <web-address>www.mulberrytech.com</web-address>
        </contact>

and I want to show the following info at the bottom of the page:

<xsl:template match="contact//*">
        <fo:block font-size="10pt" font-family="sans-serif" span="all">
                <xsl:value-of select="name()"/>
                <xsl:text> : </xsl:text>
                <xsl:value-of select="."/>
        </fo:block>
</xsl:template>

thanks in advance for any help

Camille El Hage




 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>