XSLT的“计数”功能中要计数的元素的顺序

时间:2018-09-18 14:33:01

标签: xml xslt xpath xslt-2.0 xpath-2.0

我的XSLT文件中有一条指令,该指令对节点进行计数,并在注释所在的单词旁边输出一个超链接的上标编号,以及注释本身(带有编号的超链接):

<xsl:template match="//tei:body//tei:note">
    <a>
        <xsl:attribute name="name">
            <xsl:text>footnoteref</xsl:text>
            <xsl:number level="any" count="//tei:body//tei:note" format="1"/>
        </xsl:attribute>
        <xsl:attribute name="href">
            <xsl:text>#footnote</xsl:text>
            <xsl:number level="any" count="//tei:body//tei:note" format="1"/>
        </xsl:attribute>
        <sup>
            <xsl:number level="any" count="//tei:body//tei:note" format="1"/>
        </sup>
    </a>
</xsl:template>

<xsl:template match="tei:note" mode="footnote">
    <br>
        <a>
            <xsl:attribute name="name">
                <xsl:text>footnote</xsl:text>
                <xsl:number level="any" count="//tei:body//tei:note" format="1"/>
            </xsl:attribute>
            <xsl:attribute name="href">
                <xsl:text>#footnoteref</xsl:text>
                <xsl:number level="any" count="//tei:body//tei:note" format="1"/>
            </xsl:attribute>
            <xsl:number level="any" count="//tei:body//tei:note" format="1"/>.

        </a>
        <xsl:text> </xsl:text>
        <xsl:apply-templates/>
        </i>
    </br>
</xsl:template>

[...]

<xsl:apply-templates select="//tei:body//tei:note" mode="footnote"/>

一切正常。不过,我想控制<note>元素的计数顺序。例如,如果这是我的.xml:

<body>
    <div>
        <p>Bla<note>This is a second note</note> blabla</p>
    </div>
    <div>
        <p>Bla2<note>This is a first note</note> bla bla...</p>
    </div>
</body>

正如我在课文中所说,我希望为“这是第一音符”音符输出一个“ 1”,为“这是第二音符”音符输出一个“ 2”,即使在.xml文件中,它们的顺序不同。

在输出方面,我已经在XSLT文件的开头按想要的顺序输出文本,如下所示:

<!-- Order of execution -->
<xsl:template match="tei:text/tei:body/tei:div">
    <xsl:apply-templates select="tei:opener/tei:dateline"/>
    <xsl:apply-templates select="tei:opener/tei:salute"/>
    <xsl:apply-templates select="tei:p [not(tei:stamp)] [not(tei:address)] [not(tei:postscript)]"/>
    <xsl:apply-templates select="tei:closer/tei:salute"/>
    <xsl:apply-templates select="tei:closer/tei:signed"/>
    <xsl:apply-templates select="tei:closer/tei:dateline"/>
    <xsl:apply-templates select="tei:postscript"/>
    <xsl:apply-templates select="tei:stamp"/>
</xsl:template>

,结果是文本按我想要的顺序排列,并且注释编号例如从文档顶部开始,从1到8,在“ 5”和“ '6',因为其相应的注释在tei:dateline中)。

我如何告诉'count'按我想要的顺序对<note>元素进行计数,而不管它们在XML文件中出现的顺序如何?

1 个答案:

答案 0 :(得分:2)

我认为您需要一个两遍解决方案。在第一阶段按所需顺序生成输出,然后在第二阶段进行编号。

有两种方法可以在XSLT中进行两次遍历转换:您可以将第一阶段的结果放入变量中,然后处理变量的内容。或者您可以使用两个单独的样式表。哪种方法最好取决于您希望两次通过的紧密程度。