<dsig:Transform xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
                Algorithm="http://www.w3.org/TR/1999/REC-xslt-19991116">
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>
    <xsl:template match="book">
      <H1>Buch: <xsl:value-of select="title"/> </H1>
      <H2>Autor: <xsl:value-of select="author"/> </H2>
      <P>
        <B>Geboren am:</B> 
        <xsl:value-of select="birth-date"/>
        <B>Ort:</B>
        <xsl:value-of select="birth-location"/>
      </P>
    </xsl:template>
  </xsl:stylesheet>
</dsig:Transform>