Sort an xsl:template
<xsl:template match="buchhandel">
<xsl:apply-templates select="buchwahl">
<xsl:sort select="@ersch-jahr" order="descending"/> <!-- ascending -->
<xsl:sort select="buchautor[1]"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="buchwahl">
...
</xsl:template>