我对 XSLT 很陌生,而且我不是程序员,对于我可能愚蠢的问题,我深表歉意。
我需要找到某些看起来像这样的引文:
BSK StPO-`<emphasis role="smallcaps">Burger,</emphasis>` Art. 4 N 5
包含引文的文本节点可以在不同的父元素内,例如para
,或footnote
。
比我想refid
使用部分引用作为 id 将整个引用包装在一个元素中。
<refid multi-idref="K_BSK_STPO-JSTPO_StPO_Art4_5">
BSK STGB I-`<span class="smallcaps">Burger,</span>` Art. 4 N 5
</refid>`
问题在于emphasis
元素:我找不到“绕过”它的方法。我找到了类似问题的答案,并尝试将其应用于我的问题,但没有成功。此脚本部分未找到任何引用。
这是我的代码的一部分。$DokumentName
指的是全局定义的参数。引文中带有罗马数字的部分是可选的:
<xsl:template match="text()[matches(., 'BSK\s+(\p{L}{2,5})\s+(I|II|III|IV|V|VI|VII)?\p{P}')]">
<xsl:variable name="vCur" select="."/>
<xsl:variable name="pContent" select="string(.)"/>
<xsl:analyze-string select="$pContent" regex="BSK\s+(\p{{L}}{{2,5}})\s+(I|II|III|IV|V|VI|VII)?\p{{P}}" flags="i">
<xsl:matching-substring>
<xsl:variable name="figureToTargetId">
<xsl:choose>
<xsl:when test="matches(., 'BSK\s+(\p{L}{2,5})\s+(I|II|III|IV|V|VI|VII)?\p{P}')">
<xsl:analyze-string select="." regex="(\p{{L}}{{2,5}})\s+(I|II|III|IV|V|VI|VII)">
<xsl:matching-substring>
<xsl:value-of select="concat($DokumentName, '_', regex-group(1), regex-group(2))"/>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:when>
<xsl:otherwise>
<xsl:analyze-string select="." regex="(\p{{L}}{{2,5}})">
<xsl:matching-substring>
<xsl:value-of select="concat($DokumentName, '_', regex-group(1))"/>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="figureFromTargetId">
<xsl:if test="matches($vCur, 'BSK\s+(\p{L}{2,5})\s+(I|II|III|IV|V|VI|VII)?\p{P}')">
<xsl:analyze-string select="string($vCur/following-sibling::emphasis[1]/following-sibling::*[1])" regex=",?Art\.\s+(d+)\s+N\s+(d+)">
<xsl:matching-substring>
<xsl:value-of
select="concat('_Art', regex-group(1), '_', regex-group(2))"/>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:if>
</xsl:variable>
<xsl:element name="ref-multi-id">
<xsl:attribute name="multi-idref">
<xsl:value-of select="concat($figureToTargetId, $figureToTargetId)"/>
</xsl:attribute>
<xsl:value-of select="."/>
<xsl:if test="matches($vCur, 'BSK\s+(\p{L}{2,5})\s+(I|II|III|IV|V|VI|VII)?\p{P}')">
<xsl:apply-templates select="$vCur/following-sibling::emphasis[1]" mode="copy-style"/>
<xsl:value-of select="$vCur/following-sibling::emphasis[1]/following-sibling::*[1][matches(.,',?Art\.\s+(d+)\s+N\s+(d+)')]"/>
</xsl:if>
</xsl:element>
</xsl:matching-substring>
<xsl:non-matching-substring>
<xsl:value-of select="."/>
</xsl:non-matching-substring>
</xsl:analyze-string>
</xsl:template>
<xsl:template match="emphasis[@role='smallcaps']" mode="copy-style">
<xsl:element name="span">
<xsl:attribute name="class">
<xsl:value-of select="@role"/>
</xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
任何帮助将非常感激!