<?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 master-name="my-page" 
                           page-height="297mm" 
                           page-width="210mm" 
                           margin="1in">
      <fo:region-body/>
    </fo:simple-page-master>
  </fo:layout-master-set>
  <fo:page-sequence master-reference="my-page" language="cs">
    <fo:flow flow-name="xsl-region-body">
      <fo:block>table-layout="auto" without explicit column widths</fo:block>
      <fo:table table-layout="auto">
        <!--
        <fo:table-column column-number="1" column-width="2cm"/>
        <fo:table-column column-number="2" column-width="4cm"/>
        -->
        <fo:table-body>
          <fo:table-row>
            <fo:table-cell border="1pt solid">
              <fo:block>A</fo:block>
            </fo:table-cell>
            <fo:table-cell border="1pt solid">
              <fo:block>B</fo:block>
            </fo:table-cell>
          </fo:table-row>
        </fo:table-body>
      </fo:table>

      <fo:block>table-layout="auto" with explicit column widths</fo:block>
      <fo:table table-layout="auto">
        <fo:table-column column-number="1" column-width="2cm"/>
        <fo:table-column column-number="2" column-width="4cm"/>
        <fo:table-body>
          <fo:table-row>
            <fo:table-cell border="1pt solid">
              <fo:block>A</fo:block>
            </fo:table-cell>
            <fo:table-cell border="1pt solid">
              <fo:block>B</fo:block>
            </fo:table-cell>
          </fo:table-row>
        </fo:table-body>
      </fo:table>

      <fo:block>width="auto" with explicit column widths</fo:block>
      <fo:table width="auto">
        <fo:table-column column-number="1" column-width="2cm"/>
        <fo:table-column column-number="2" column-width="4cm"/>
        <fo:table-body>
          <fo:table-row>
            <fo:table-cell border="1pt solid">
              <fo:block>A</fo:block>
            </fo:table-cell>
            <fo:table-cell border="1pt solid">
              <fo:block>B</fo:block>
            </fo:table-cell>
          </fo:table-row>
        </fo:table-body>
      </fo:table>

      <fo:block>width="6cm" with explicit column widths</fo:block>
      <fo:table width="6cm">
        <fo:table-column column-number="1" column-width="2cm"/>
        <fo:table-column column-number="2" column-width="4cm"/>
        <fo:table-body>
          <fo:table-row>
            <fo:table-cell border="1pt solid">
              <fo:block>A</fo:block>
            </fo:table-cell>
            <fo:table-cell border="1pt solid">
              <fo:block>B</fo:block>
            </fo:table-cell>
          </fo:table-row>
        </fo:table-body>
      </fo:table>


    </fo:flow>
  </fo:page-sequence>
</fo:root>

