<?xml version='1.0' encoding="ISO-8859-1" ?>

<!-- kapitel2-tex1.xsl                                   -->
<!-- XSL-Datei (passend zu kapitel2.xml                  -->
<!-- kann mit SAXON und anderen Tools verarbeitet werden -->
<!-- 28.1.2002, GP (HRZ Gießen)                          -->

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output method="html" encoding="ISO-8859-1" />
   <xsl:template match="/">
      <html>

      <head><title>Unsere Kapitel</title></head>

      <body>
      <h1>Unsere Kapitel</h1>
      <xsl:apply-templates />
      </body>
      </html>
   </xsl:template>

   <xsl:template match="kapitel">
      <xsl:apply-templates />
   </xsl:template>

   <xsl:template match="titel">
      <h2><xsl:apply-templates /></h2>
   </xsl:template>

   <xsl:template match="rumpf">
      <xsl:apply-templates />
   </xsl:template>

   <xsl:template match="absatz">
      <p><xsl:apply-templates /></p>
   </xsl:template>

   <xsl:template match="text()">
      <xsl:value-of select="." />
   </xsl:template>
</xsl:stylesheet>


