1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" ?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  <fo:layout-master-set>
    <fo:simple-page-master
    page-height="210mm" page-width="297mm"
    margin-top="20mm" margin-bottom="20mm"
    margin-left="20mm" margin-right="20mm"
    master-name="Pagemaster-1" >
      <fo:region-body
      margin-top="5mm" margin-bottom="5mm"
      margin-left="5mm" margin-right="5mm" />
      <fo:region-before extent="10mm" />
      <fo:region-after extent="10mm" />
    </fo:simple-page-master>
  </fo:layout-master-set>
  <fo:page-sequence master-reference="Pagemaster-1" >
    <fo:flow flow-name="xsl-region-body">
      <fo:block font-size="96pt" text-align="center">
        Hello, world!
      </fo:block>
    </fo:flow>
  </fo:page-sequence>
</fo:root>