> <xsl:template match="/">
>    ...
>    <fo:page-sequence ...>
>      <xsl:apply-templates select="whatever-nodes" />
>    </fo:page-sequence>
> </xsl:template>
> 
> <xsl:template match="whatever-nodes">
>    <fo:table ...>
>      <!-- maybe some more xsl:apply-templates or xsl:call-template  
> here... -->
>    </fo:table>
> </xsl:template>
> 
Yeah, but the problem I had with that was always that it complains that the fo
in fo:table inside the whatever temoplate is not bound.
(The prefix "fo" for element "fo:table" is not bound., 'Could not compile
stylesheet')
But then I noticed that the xmlns:fo="" declaration was inside the fo:root node.

I moved it, it works .

Sorry for taking up your time with this. I should have seen that ages ago.

/Johan




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

Reply via email to