xsl-list
[Top] [All Lists]

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

2016-06-12 07:33:08
On 6/12/2016 9:24 PM, Martin Honnen martin(_dot_)honnen(_at_)gmx(_dot_)de wrote:

With a default namespace declaration like
   xmlns="http://www.tei-c.org/ns/1.0";
in place in the input XML with an XSLT 1.0 processor you need

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:tei="http://www.tei-c.org/ns/1.0"; exclude-result-prefixes="tei">
    <xsl:template match="tei:TEI/tei:text/tei:body">
      <html>
      <head/>
       <body>
         <xsl:for-each select="//tei:term[@xml:lang='zh'] ">
         <xsl:sort select="."/>
           <p><xsl:apply-templates/><xsl:text> </xsl:text></p>
           </xsl:for-each>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>

Yes! And it sorts:

<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   </head>
   <body>
      <p>一住 </p>
      <p>一依 </p>
      <p>一分 </p>
      <p>一切 </p>
      <p>一切 </p>
      <p>一切 </p>
      <p>一切 </p>


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

In any case, thank you so much.


Chuck


---------------------------
A. Charles Muller

Graduate School of Humanities and Sociology
Faculty of Letters
University of Tokyo
7-3-1 Hongō, Bunkyō-ku
Tokyo 113-8654, Japan

Office Phone: 03-5841-3735

Web Site: Resources for East Asian Language and Thought
http://www.acmuller.net

Twitter: @H_Buddhism
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>