1<xsl:stylesheet
2  version="1.0"
3  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4  xmlns:fo="http://www.w3.org/1999/XSL/Format"
5  xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias">
6
7<xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/>
8
9<xsl:template match="/">
10  <axsl:stylesheet>
11    <xsl:apply-templates/>
12  </axsl:stylesheet>
13</xsl:template>
14
15<xsl:template match="block">
16  <axsl:template match="{.}">
17     <fo:block><axsl:apply-templates/></fo:block>
18  </axsl:template>
19</xsl:template>
20
21</xsl:stylesheet>
22