Thomas Yip wrote:
[...]
<xsl:include href="../template1.xsl" />
<xsl:include href="template2.xsl"/>
<xsl:include href="template3.xsl" />
<xsl:include href="template4.xsl" />
<xsl:include href="template5.xsl" />

[...]

<!-- Body -->
<fo:flow flow-name="xsl-region-body">
  fo:block>
    <xsl:call-template name="template1" /> <!--in template1.xsl-->
    <xsl:call-template name="template2" /> <!--in template2.xsl-->
    <xsl:call-template name="template3" /> <!--in template3.xsl-->
    <xsl:call-template name="template4" /> <!--in template4.xsl-->
    <xsl:call-template name="template5" /> <!--in template5.xsl-->
  </fo:block>
</fo:flow>
[...]

Now it is XSLT, not XSL-FO. I thought the XSL-FO process was causing the trouble (see your own OP).

I don't see why this (including many stylesheets) would cause you problems with running XSLT.

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

Reply via email to