> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

> But now, my favourite graphist gave me beautifull SVG files to
> integrate between the differents categories... So I thought i'd be
> able to make something like a "conditionnal page sequences" to
> insert this SVG between my different categories... I tried this code :
>
> <xsl:if test="SOUSTHEME != following-sibling::FICHE[1]/SOUSTHEME">
>        <!-- First I close the current sequence  -->
>        </fo:flow>

This is the flaw in the approach. XML in general (therefore also XSLT) will
never allow you to start an element at some place and put its end-tag in a
different element. (like you can do with HTML)

You have to to map the structure to page-sequences without use of an xsl:if
in this particular way...


Cheers,

Andreas


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

Reply via email to