<?xml version="1.0" encoding="utf-8"?>
<?xep-pdf-drop-unused-destinations false?>
<?xep-postscript-drop-unused-destinations false?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  <fo:layout-master-set>
    <fo:simple-page-master master-name="chapter"
    page-width="100mm" page-height="100mm" 	margin-top="0mm" margin-bottom="0mm" 	margin-left="0mm" margin-right="0mm">
      <?xep-pdf-crop-offset 1.0mm 1.0mm 1.0mm 1.0mm?>
      <?xep-postscript-crop-offset 1.0mm 1.0mm 1.0mm 1.0mm?>
      <?xep-pdf-bleed 1.0mm 1.0mm 1.0mm 1.0mm?>
      <?xep-postscript-bleed 1.0mm 1.0mm 1.0mm 1.0mm?>
      <fo:region-body column-count="2" column-gap="4.5mm"
      margin-bottom="10mm" margin-left="10mm" margin-right="10mm" margin-top="10mm" />
    </fo:simple-page-master>
  </fo:layout-master-set>  
  <fo:page-sequence master-reference="chapter">
    <fo:flow flow-name="xsl-region-body">
        <fo:table>
          <fo:table-column column-width="proportional-column-width(1)" />
          <fo:table-body>
            <fo:table-row>
              <fo:table-cell background-color="green">
                <fo:block>Text</fo:block>
              </fo:table-cell>
            </fo:table-row>
          </fo:table-body>
        </fo:table>
    </fo:flow>
  </fo:page-sequence> 
</fo:root>

