summaryrefslogtreecommitdiff
path: root/tests/REC/test-7.7-4.xsl
blob: 5f15af19a6dfbf1cd6baee98d346eac092465928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:fo="http://www.w3.org/1999/XSL/Format">

<xsl:template match="note">
  <fo:block>
    <xsl:number level="any" from="chapter" format="(1) "/>
    <xsl:apply-templates/>
  </fo:block>
</xsl:template>

</xsl:stylesheet>