XML-TEI如何调用两个属性
XML-TEI How to call two attributes
我正在处理诗歌,我想给每一节都一个自己的 ID,混合了诗歌的编号和诗歌的编号。
Header:
<?xml version="1.0" encoding ="UTF-8" standalone ="no" ?>
<TEI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<teiHeader>
<fileDesc>
<titleStmt>
<title n="013">13</title>
经文:
<lg>
<l n="01"></l>
</lg>
我想为 <l>
创建一个 xml:id 属性,例如 p013-v01(诗 13,来自 n@title;第 1 节来自 n@ l).有什么办法可以自动为每一行做吗?
这样做的目的是比较同一首诗的版本和版本。有人告诉我这样做,但老实说,我不确定这个 xml:id 属性的实用性。我希望你能帮助我。谢谢!
<xsl:template match="l">
<xsl:variable name="id-num" select="concat('p', ancestor::TEI/descendant::title/@n, '-v', ./@n)"/>
<l id="{$id-num}">
<xsl:attribute name="n"><xsl:value-of select="@n"/></xsl:attribute>
<xsl:apply-templates/>
</l>
</xsl:template>
id 值是文字文本字符串和两个属性值的串联结果。
我正在处理诗歌,我想给每一节都一个自己的 ID,混合了诗歌的编号和诗歌的编号。
Header:
<?xml version="1.0" encoding ="UTF-8" standalone ="no" ?>
<TEI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<teiHeader>
<fileDesc>
<titleStmt>
<title n="013">13</title>
经文:
<lg>
<l n="01"></l>
</lg>
我想为 <l>
创建一个 xml:id 属性,例如 p013-v01(诗 13,来自 n@title;第 1 节来自 n@ l).有什么办法可以自动为每一行做吗?
这样做的目的是比较同一首诗的版本和版本。有人告诉我这样做,但老实说,我不确定这个 xml:id 属性的实用性。我希望你能帮助我。谢谢!
<xsl:template match="l">
<xsl:variable name="id-num" select="concat('p', ancestor::TEI/descendant::title/@n, '-v', ./@n)"/>
<l id="{$id-num}">
<xsl:attribute name="n"><xsl:value-of select="@n"/></xsl:attribute>
<xsl:apply-templates/>
</l>
</xsl:template>
id 值是文字文本字符串和两个属性值的串联结果。