次のコードを見てください。
<xsl:template match="tocline[@toclevel='2']">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:for-each select="descendant::toctitle">
<xsl:if test="position() = last()">
<xsl:attribute name="last">
<xsl:value-of select="'true'"/>
</xsl:attribute>
</xsl:if>
</xsl:for-each>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
このテンプレートは、属性を tocline 要素に適用します。さまざまなレベルに配置できるノードセットの最後の toctitle に属性を適用したいと考えています。
このサンプルでは:
<tocline id="d1e11" toclevel="1">
<toctitle>Section 1. Legislative Powers</toctitle>
<tocline id="d1e40" toclevel="2">
<toctitle>Separation of Powers and Checks and Balances</toctitle>
<tocline id="d1e51" toclevel="3">
<toctitle>The Theory Elaborated and Implemented</toctitle>
</tocline>
<tocline id="d1e189" toclevel="3">
<toctitle>Judicial Enforcement</toctitle>
</tocline>
</tocline>
</tocline>
これ欲しい:
<tocline id="d1e11" toclevel="1">
<toctitle>Section 1. Legislative Powers</toctitle>
<tocline id="d1e40" toclevel="2">
<toctitle>Separation of Powers and Checks and Balances</toctitle>
<tocline id="d1e51" toclevel="3">
<toctitle>The Theory Elaborated and Implemented</toctitle>
</tocline>
<tocline id="d1e189" toclevel="3">
<toctitle last="true">Judicial Enforcement</toctitle>
</tocline>
</tocline>
</tocline>
しかし、私はこれを取得します:
<tocline id="d1e11" toclevel="1">
<toctitle>Section 1. Legislative Powers</toctitle>
<tocline id="d1e40" toclevel="2" last="true">
<toctitle>Separation of Powers and Checks and Balances</toctitle>
<tocline id="d1e51" toclevel="3">
<toctitle>The Theory Elaborated and Implemented</toctitle>
</tocline>
<tocline id="d1e189" toclevel="3">
<toctitle>Judicial Enforcement</toctitle>
</tocline>
</tocline>
</tocline>