Elements, Misc
xsl:include
<xsl:include href="..."/>
- Textually replaces the include element with the contents of the
external XSLT file
xsl:sort
<xsl:sort select="..."/>
- Sorts the output
<xsl:for-each select="catalog/cd">
<xsl:sort select="artist"/>
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>