<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">


<xsl:template match="/">
   <xsl:apply-templates />
</xsl:template>


 


<xsl:template match="descript">

   <html>
   <head>
	
	   <title><xsl:value-of select="descript/title"/></title>
	
   </head>
   <body>

   

   <xsl:apply-templates/>

   </body>
   </html>
</xsl:template>


<xsl:template match="title">
<h3><xsl:value-of/></h3>
<xsl:apply-templates/>
</xsl:template>



<xsl:template match="collat">
<P>Number of leaves:<br /><I><xsl:value-of select="numleaf"/></I></P>
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="abstract | note | text | link | pagfol "/>

</xsl:stylesheet>

