<?xml version="1.0" encoding="iso-8859-1"?> 
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:lss="http://www.linguastream.org/LSS/2.0"
xmlns="hhtp://www.w3.org/1998/Math/MathML">
<xsl:import href='feuille2.xsl'/>
	<xsl:template match='/'>
	   <html xmlns="http://www.w3.org/1999/xhtml">
	   	<head>
		    <title>Document composite</title>
		</head>
	   	<body>
		<xsl:for-each select="lss:semantics/lss:sem">
		    <br/>
		    <p><span style="color:blue; font-weight:bold">Texte :</span>
		    <b><xsl:value-of select="lss:text"/></b></p>
		    <br/>
		    <p><span style="color:blue; font-weight:bold">Matrice :</span>
		    <xsl:call-template name="matrice"/></p>
		    <hr/>
		</xsl:for-each>		               	    
	   	</body>
	    </html>
	</xsl:template>
</xsl:stylesheet>

