XSL - Exemple


<xsl:stylesheet
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:fo="http://www.w3.org/1999/XSL/Format"
     result-ns="fo">
  <xsl:template match="/">
    <fo:page-sequence font-family="serif">
       <xsl:apply-templates/>
    </fo:page-sequence>  </xsl:template>
  <xsl:template match="para">
    <fo:block font-size="10pt" space-before="12pt">      <xsl:apply-templates/>
    </fo:block>  </xsl:template>
</xsl:stylesheet>