Hi there,
I tried to have a table-caption with vertical text orientation. So I have to use fo:block-container with the attribute reference-orientation="90". For having a very flexible layout I would like to have a dynamic row heigth. But every attribute I tried to use regarding the dimension progression will not effect a proper result. Everytime I've got some overflow. So maybe somebody knows a solution for this issue. Thanks! Best Regards Markus This is my test case: <?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="first" margin-right="1.5cm" margin-left="1.5cm" margin-bottom="2cm" margin-top="1cm" page-width="21cm" page-height="17cm"> <fo:region-body margin-top="1cm"/> <fo:region-before extent="1cm"/> <fo:region-after extent="1.5cm"/> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference="first" language="de"> <fo:static-content flow-name="xsl-region-before"> <fo:block line-height="14pt" font-size="10pt" text-align="end">table examples</fo:block> </fo:static-content> <fo:static-content flow-name="xsl-region-after"> <fo:block line-height="14pt" font-size="10pt" text-align="end">Page <fo:page-number/> </fo:block> </fo:static-content> <fo:flow flow-name="xsl-region-body"> <fo:block space-before.optimum="3pt" space-after.optimum="15pt">Tests for breaks on table rows.</fo:block> <fo:block space-before.optimum="80pt" space-after.optimum="15pt">Table 1: basic break after with next</fo:block> <fo:table border-width="0.5pt" border-color="blue" border="solid" table-layout="fixed" width="15cm"> <fo:table-column column-width="9cm"/> <fo:table-column column-width="3cm"/> <fo:table-column column-width="3cm"/> <fo:table-body> <fo:table-row border-width="0.5pt" break-after="page" inline-progression-dimension.minimum="5mm" inline-progression-dimension.optimum="70mm" inline-progression-dimension.maximum="70mm" block-progression-dimension.minimum="5mm" block-progression-dimension.optimum="20mm" block-progression-dimension.maximum="70mm"> <fo:table-cell hyphenate="true" border="solid" border-width="1px" border-color="green"> <fo:block-container reference-orientation="90" border="solid" border-width="1px" border-color="red" inline-progression-dimension.minimum="5mm" inline-progression-dimension.optimum="20mm" inline-progression-dimension.maximum="70mm" block-progression-dimension.minimum="5mm" block-progression-dimension.optimum="20mm" block-progression-dimension.maximum="70mm" > <fo:block >first_row_in_table_which_is_very_long</fo:block> </fo:block-container> </fo:table-cell> <fo:table-cell> <fo:block text-align="center">new page new page new page</fo:block> </fo:table-cell> <fo:table-cell> <fo:block text-align="center">for next new page new page new page</fo:block> </fo:table-cell> </fo:table-row> <fo:table-row border-width="0.5pt"> <fo:table-cell> <fo:block text-align="center">second row</fo:block> </fo:table-cell> <fo:table-cell> <fo:block text-align="center">normal</fo:block> </fo:table-cell> <fo:table-cell> <fo:block text-align="center">row</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:flow> </fo:page-sequence> </fo:root>