2 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
5 <xsl:template match=
"book">
7 <xsl:apply-templates select=
"chapter"/>
11 <xsl:template match=
"chapter">
13 <title><xsl:value-of select=
"title"/></title>
14 <anchor><xsl:value-of select=
"@id"/></anchor>
15 <xsl:apply-templates select=
"sect1"/>
19 <xsl:template match=
"sect1">
21 <title><xsl:value-of select=
"title"/></title>
22 <anchor><xsl:value-of select=
"@id"/></anchor>