#11
Using a Mode
Modes can only be used on xsl:apply-templates.
Example:
<xsl:template match="doc"> <html> <head> <xsl:apply-templates mode="head"/> </head> <body> <xsl:apply-templates/> </body> </html> </xsl:template>