Luke Shannon wrote:
Hello Andreas;

This is the nature of my problem. The block lies outside of the root. It is
in a template. I start in root, write some generic stuff and than depending
on the params jump of the one of several templates to write out the content.

Each template needs to contains its own formatting schema. I was hoping to
do this by embedding the content in a fo block.

If this is allowed, do I have any other options? I would like to avoid
complicating the root template with 13 different output options.

I think you just need to define the fo namespace at the top of your xsl:stylesheet, e.g.


<xsl:stylesheet xmlns:fo="http://www.w3.org/1999/XSL/Format";>
<xsl:template match="/">
<fo:root>
...
</fo:root>
</xsl:template>

...

</xsl:stylesheet>

<snip/>

Chris


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



Reply via email to