[xsl] put text at the bottom of the page

Subject: [xsl] put text at the bottom of the page
From: "El Hage Camille" <CAMILLE.ELHAGE@xxxxxxxxxxxxxxxx>
Date: Thu, 10 Oct 2002 19:01:06 +0200
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@xxxxxxx</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


Current Thread