我在互联网上(以及在这个论坛上)找到了很多解决这个问题的方法,但我仍然可以解决我的问题。我有这个代码:
<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="#default">
<xsl:output omit-xml-declaration="yes" standalone="no" method="xml" indent="no" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:body">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
<back>
<div>
<xsl:for-each select="//tei:rs[@type='luogo']">
<p><xsl:value-of select="."/></p>
</xsl:for-each>
</div></back>
</xsl:template>
</xsl:stylesheet>
输出是正确的,除了后面部分重复 xmlns 和 xmlns:tei 属性:
<back xmlns="" xmlns:tei="http://www.tei-c.org/ns/1.0"><div>....</div></back>
他们已经在这里了(所以我不需要“后退”):
<TEI xmlns="http://www.tei-c.org/ns/1.0">
我试过这样的代码:
<xsl:template match="@*|node()[not(self::*)]">
<xsl:copy/>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates select="node()|@*"/>
</xsl:element>
</xsl:template>
或这个:
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates select="@*|*"/>
</xsl:element>
</xsl:template>
<xsl:template match="tei:back">
<xsl:attribute name="{local-name()}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
我什至更改了它以使其适合我的代码,使用“tei:back”更改匹配或选择的值,它不起作用。为了使 tei 命名空间仅出现在该部分中,我必须做什么?感谢您的建议您的帮助!
编辑:谢谢你的答案。我的xml代码是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="file:/C:/Users/User/Desktop/prova2.xsl"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader><fileDesc>
<titleStmt>
<title>AA</title>
</titleStmt>
<publicationStmt><p><!-- supply publication information --></p></publicationStmt>
<sourceDesc>
<bibl>AA</bibl>
</sourceDesc>
</fileDesc><profileDesc>
<langUsage>
<language ident="ita">AA</language>
<language ident="lat">AA</language>
</langUsage>
</profileDesc></teiHeader>
<text>
<body>
<div type="book" n="3" xml:id="L3">
<head>AA
</head>
<div type="cap" n="1" xml:id="L3-01">
<head>AA</head>
<p>AA
<pb n="200"/>AA
</p>
</div>
</div>
</body>
</text>
</TEI>
完整的输出是这样的:
<?xml-stylesheet type="text/xsl" href="file:/C:/Users/User/Desktop/prova2.xsl"?><TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader><fileDesc>
<titleStmt>
<title>AA</title>
</titleStmt>
<publicationStmt><p><!-- supply publication information --></p></publicationStmt>
<sourceDesc>
<bibl>AA</bibl>
</sourceDesc>
</fileDesc><profileDesc>
<langUsage>
<language ident="ita">AA</language>
<language ident="lat">AA</language>
</langUsage>
</profileDesc></teiHeader>
<text>
<body>
<div type="book" n="3" xml:id="L3">
<head>AA
</head>
<div type="cap" n="1" xml:id="L3-01">
<head>AA</head>
<p>AA
<pb n="200"/>AA
</p>
</div>
</div>
</body><back xmlns="" xmlns:tei="http://www.tei-c.org/ns/1.0"><div/></back>
</text>
</TEI>