出力上のこれらのテンプレートの違いは何ですか? これら2つはどのように出力を生成しますか? 私はこれを理解するのに少し混乱しています
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
と
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="."/>
</xsl:copy>
</xsl:template>