<?xml version="1.0"?>
<?xml-stylesheet type="text/xml" href="#stylesheet"?>
<!DOCTYPE doc [
<!ATTLIST xsl:stylesheet
  id	ID	#REQUIRED>
]>
<doc>
<xsl:stylesheet version="1.0"
                id="stylesheet"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>
  <xsl:template match="xsl:stylesheet" />
  <xsl:template match="child">
    <html>
      <head><title>title of embedded stylesheet</title></head>
      <body>
        <xsl:apply-templates/>
      </body>
    </html>
  </xsl:template>
  <xsl:template match="grandchild">
    <h1>Success</h1>
  </xsl:template>
</xsl:stylesheet>

<child><grandchild/></child>

</doc>