Rule-Based Stylesheet
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<html><body>
<xsl:apply-templates/>
</body></html>
</xsl:template>
<xsl:template match="interpret">
<b><xsl:value-of
select="."/></b><br/>
</xsl:template>
<xsl:template match="titel">
<xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>