aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2001-01-07 23:39:46 +0000
committerKeiron Liddle <keiron@apache.org>2001-01-07 23:39:46 +0000
commitcc87e36a3cc90764bd0aad71af617f5ba5ec490d (patch)
tree21503506d59e2c42d3a6d74013771d0898c67cc1 /docs
parented9052ff8f76ccabc6586f84b16b7b41f8c1cc55 (diff)
downloadxmlgraphics-fop-cc87e36a3cc90764bd0aad71af617f5ba5ec490d.tar.gz
xmlgraphics-fop-cc87e36a3cc90764bd0aad71af617f5ba5ec490d.zip
table example with spaces around various table things
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193953 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/examples/tables/space.fo532
1 files changed, 532 insertions, 0 deletions
diff --git a/docs/examples/tables/space.fo b/docs/examples/tables/space.fo
new file mode 100644
index 000000000..83b06c820
--- /dev/null
+++ b/docs/examples/tables/space.fo
@@ -0,0 +1,532 @@
+<?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
+ margin-right="1.5cm"
+ margin-left="1.5cm"
+ margin-bottom="2cm"
+ margin-top="1cm"
+ page-width="21cm"
+ page-height="29.7cm"
+ master-name="first">
+ <fo:region-before extent="1cm"/>
+ <fo:region-body margin-top="1cm"/>
+ <fo:region-after extent="1.5cm"/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+
+ <fo:page-sequence master-name="first">
+ <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">
+ Table 1: spaces around cells
+ </fo:block>
+
+ <fo:table border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ first
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ row
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell padding-left="5pt" border-width="0.5pt">
+ <fo:block text-align="center">
+ left 5pt
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row>
+ <fo:table-cell space-before.optimum="5pt" border-width="0.5pt">
+ <fo:block text-align="center">
+ before 5pt
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell padding-right="5pt" border-width="0.5pt">
+ <fo:block text-align="center">
+ right 5pt
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell space-after.optimum="5pt" border-width="0.5pt">
+ <fo:block text-align="center">
+ after 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ last
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell border-width="0.5pt">
+ <fo:block text-align="center">
+ row
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+
+ <fo:block space-before.optimum="3pt" space-after.optimum="15pt">
+ Table 2: spaces around rows
+ </fo:block>
+
+ <fo:table border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body>
+ <fo:table-row border-width="0.5pt" padding-left="5pt">
+ <fo:table-cell>
+ <fo:block text-align="center">
+ padding
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ left
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row border-width="0.5pt" space-before.optimum="5pt">
+ <fo:table-cell>
+ <fo:block text-align="center">
+ space
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ before
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row border-width="0.5pt" space-after.optimum="5pt">
+ <fo:table-cell>
+ <fo:block text-align="center">
+ space
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row border-width="0.5pt" padding-right="5pt">
+ <fo:table-cell>
+ <fo:block text-align="center">
+ padding
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ right
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+
+ <fo:block space-before.optimum="3pt" space-after.optimum="15pt">
+ Table 3: spaces around body
+ </fo:block>
+
+ <fo:table border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body border-width="0.5pt" padding-left="5pt">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ padding
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ left
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+
+ <fo:table-body border-width="0.5pt" space-before.optimum="5pt">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ space
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ before
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+
+ <fo:table-body border-width="0.5pt" space-after.optimum="5pt">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ space
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+
+ <fo:table-body border-width="0.5pt" padding-right="5pt">
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ padding
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ right
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+
+ <fo:block space-before.optimum="3pt" space-after.optimum="15pt">
+ Table 4: spaces around table
+ </fo:block>
+
+ <fo:block border-width="0.5pt">
+ <fo:table space-before.optimum="5pt" border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ space before
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:block>
+
+ <fo:block border-width="0.5pt">
+ <fo:table padding-left="5pt" border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ padding left
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:block>
+
+ <fo:block border-width="0.5pt">
+ <fo:table padding-right="5pt" border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ padding right
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:block>
+
+ <fo:block border-width="0.5pt">
+ <fo:table space-after.optimum="5pt" border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ space after
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:block>
+
+ <fo:block space-before.optimum="3pt" space-after.optimum="15pt">
+ Table 5: combinations
+ </fo:block>
+
+ <fo:block border-width="0.5pt">
+ <fo:table space-after.optimum="20pt" border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body space-after.optimum="15pt" border-width="0.5pt" border-color="green">
+ <fo:table-row space-after.optimum="10pt" border-width="0.5pt" border-color="blue">
+ <fo:table-cell space-after.optimum="5pt" border-width="0.5pt" border-color="yellow">
+ <fo:block text-align="center">
+ after 5pt
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ and row
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after 10pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ and
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ body
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after 15pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ and
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after 20pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:block>
+
+ <fo:block border-width="0.5pt">
+ <fo:table space-after.optimum="5pt" border-width="0.5pt" border-color="red">
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+ <fo:table-column column-width="3cm"/>
+
+ <fo:table-body space-after.optimum="10pt" border-width="0.5pt" border-color="green">
+ <fo:table-row space-after.optimum="15pt" border-width="0.5pt" border-color="blue">
+ <fo:table-cell space-after.optimum="20pt" border-width="0.5pt" border-color="yellow">
+ <fo:block text-align="center">
+ after 20pt
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ and row
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after 15pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ and
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ body
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after 10pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ and
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ table
+ </fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block text-align="center">
+ after 5pt
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:block>
+
+ </fo:flow>
+ </fo:page-sequence>
+</fo:root>