aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples/fo/table.fo
blob: 9d2643304e021e88e8071d380be718da1c5dc845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">


  <!-- defines the layout master -->
  <fo:layout-master-set>
    <fo:simple-page-master master-name="first" 
                           page-height="29.7cm" 
                           page-width="21cm" 
                           margin-top="1cm" 
                           margin-bottom="2cm" 
                           margin-left="2.5cm" 
                           margin-right="2.5cm">
      <fo:region-before extent="3cm"/>
      <fo:region-body margin-top="3cm"/>
      <fo:region-after extent="1.5cm"/>
    </fo:simple-page-master>
  </fo:layout-master-set>

  <!-- starts actual layout -->
  <fo:page-sequence master-name="first">

  <!-- Inserts a header with the page number -->
  <fo:static-content flow-name="xsl-region-before">
    <fo:block text-align="end" font-size="10pt" font-family="serif" line-height="14pt">
          FOP - p. <fo:page-number/>
    </fo:block>
  </fo:static-content>

  <fo:flow flow-name="xsl-region-body">

      <fo:block font-size="10pt" font-family="sans-serif" line-height="10pt" space-after.optimum="3pt" font-weight="bold" start-indent="15pt">
          Content
      </fo:block>

      <!-- Here starts the table -->
      <fo:table>
        <fo:table-column column-width="1cm"/>
        <fo:table-column column-width="15cm"/>
        <fo:table-body font-size="10pt" font-family="sans-serif">
        <fo:table-row line-height="12pt">
        <fo:table-cell>
          <fo:block text-align="end">A) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">What is FOP?</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">B) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Downloading FOP</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">C) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Running FOP</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">D) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Embedding FOP </fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">E) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">What's Implemented?</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">F) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Limitations</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">G) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Bugs</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">H) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Compiling FOP</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">I) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Getting involved</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">J) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">FOP Relevant Specifications</fo:block>
        </fo:table-cell>
        </fo:table-row>
        <fo:table-row line-height="12pt">
        <fo:table-cell>
        <fo:block text-align="end">K) </fo:block>
        </fo:table-cell>
        <fo:table-cell>
        <fo:block text-align="start">Licence</fo:block>
        </fo:table-cell>
        </fo:table-row>
        </fo:table-body>
      </fo:table>
    </fo:flow>
  </fo:page-sequence>
</fo:root>