fabio76 wrote:
I have a repetition of each paragraph ...and this is no correct.

The problems are here:
                        <xsl:variable name="current-figure-node"
select="following::figure[1]"/>
use
 <xsl:variable name="current-figure-node" select="."/>
here and
                                   <xsl:apply-templates
select="following::node()[generate-id(following::figure[1]) ...

select="preceding-sibling::node()[generate-id(preceding-sibling::figure[1])

The "..-sibling" was the reason you got your content processed multiple
times, and the "following..." was a bug.

J.Pietschmann

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

Reply via email to