Re: [xsl] Generating an index of terms in a TEI P5 book MS

Subject: Re: [xsl] Generating an index of terms in a TEI P5 book MS
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sun, 12 Jun 2016 12:36:55 -0000
On 12.06.2016 14:33, Charles Muller acmuller@xxxxxxxxxxxxxxx wrote:

I wonder if there is a way to eliminate the doubled entries with XSLT?

As you seem to have access to XSLT 2.0, you could simply use


<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; xpath-default-namespace="http://www.tei-c.org/ns/1.0"; version="2.0">
<xsl:template match="TEI">
<html>
<head/>
<body>
<xsl:for-each select="distinct-values(//term[@xml:lang='zh'])">
<xsl:sort select="."/>
<p><xsl:value-of select="."/><xsl:text> </xsl:text></p>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>


or replace the `for-each` you had with for-each-group select="//term[@xml:lang='zh']" group-by=".".

Current Thread