You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

table.fo 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  3. <!-- defines the layout master -->
  4. <fo:layout-master-set>
  5. <fo:simple-page-master page-master-name="first"
  6. height="29.7cm" width="21cm"
  7. margin-top="1cm"
  8. margin-bottom="2cm"
  9. margin-left="2.5cm"
  10. margin-right="2.5cm">
  11. <fo:region-before extent="3cm"/>
  12. <fo:region-body margin-top="3cm"/>
  13. <fo:region-after extent="1.5cm"/>
  14. </fo:simple-page-master>
  15. </fo:layout-master-set>
  16. <!-- starts actual layout -->
  17. <fo:page-sequence>
  18. <!-- applies layout master -->
  19. <fo:sequence-specification>
  20. <fo:sequence-specifier-single page-master-name="first"/>
  21. </fo:sequence-specification>
  22. <!-- Inserts a header with the page number -->
  23. <fo:static-content flow-name="xsl-before">
  24. <fo:block text-align="end" font-size="10pt" font-family="serif" line-height="14pt">
  25. FOP - p. <fo:page-number/>
  26. </fo:block>
  27. </fo:static-content>
  28. <fo:flow flow-name="xsl-body">
  29. <fo:block font-size="10pt" font-family="sans-serif" line-height="10pt" space-after.optimum="3pt" font-weight="bold" start-indent="15pt">
  30. Content
  31. </fo:block>
  32. <!-- Here starts the table -->
  33. <fo:table>
  34. <fo:table-column column-width="1cm"/>
  35. <fo:table-column column-width="15cm"/>
  36. <fo:table-body font-size="10pt" font-family="sans-serif">
  37. <fo:table-row line-height="12pt">
  38. <fo:table-cell>
  39. <fo:block text-align="end">A) </fo:block>
  40. </fo:table-cell>
  41. <fo:table-cell>
  42. <fo:block text-align="start">What is FOP?</fo:block>
  43. </fo:table-cell>
  44. </fo:table-row>
  45. <fo:table-row line-height="12pt">
  46. <fo:table-cell>
  47. <fo:block text-align="end">B) </fo:block>
  48. </fo:table-cell>
  49. <fo:table-cell>
  50. <fo:block text-align="start">Downloading FOP</fo:block>
  51. </fo:table-cell>
  52. </fo:table-row>
  53. <fo:table-row line-height="12pt">
  54. <fo:table-cell>
  55. <fo:block text-align="end">C) </fo:block>
  56. </fo:table-cell>
  57. <fo:table-cell>
  58. <fo:block text-align="start">Running FOP</fo:block>
  59. </fo:table-cell>
  60. </fo:table-row>
  61. <fo:table-row line-height="12pt">
  62. <fo:table-cell>
  63. <fo:block text-align="end">D) </fo:block>
  64. </fo:table-cell>
  65. <fo:table-cell>
  66. <fo:block text-align="start">Embedding FOP </fo:block>
  67. </fo:table-cell>
  68. </fo:table-row>
  69. <fo:table-row line-height="12pt">
  70. <fo:table-cell>
  71. <fo:block text-align="end">E) </fo:block>
  72. </fo:table-cell>
  73. <fo:table-cell>
  74. <fo:block text-align="start">What's Implemented?</fo:block>
  75. </fo:table-cell>
  76. </fo:table-row>
  77. <fo:table-row line-height="12pt">
  78. <fo:table-cell>
  79. <fo:block text-align="end">F) </fo:block>
  80. </fo:table-cell>
  81. <fo:table-cell>
  82. <fo:block text-align="start">Limitations</fo:block>
  83. </fo:table-cell>
  84. </fo:table-row>
  85. <fo:table-row line-height="12pt">
  86. <fo:table-cell>
  87. <fo:block text-align="end">G) </fo:block>
  88. </fo:table-cell>
  89. <fo:table-cell>
  90. <fo:block text-align="start">Bugs</fo:block>
  91. </fo:table-cell>
  92. </fo:table-row>
  93. <fo:table-row line-height="12pt">
  94. <fo:table-cell>
  95. <fo:block text-align="end">H) </fo:block>
  96. </fo:table-cell>
  97. <fo:table-cell>
  98. <fo:block text-align="start">Compiling FOP</fo:block>
  99. </fo:table-cell>
  100. </fo:table-row>
  101. <fo:table-row line-height="12pt">
  102. <fo:table-cell>
  103. <fo:block text-align="end">I) </fo:block>
  104. </fo:table-cell>
  105. <fo:table-cell>
  106. <fo:block text-align="start">Getting involved</fo:block>
  107. </fo:table-cell>
  108. </fo:table-row>
  109. <fo:table-row line-height="12pt">
  110. <fo:table-cell>
  111. <fo:block text-align="end">J) </fo:block>
  112. </fo:table-cell>
  113. <fo:table-cell>
  114. <fo:block text-align="start">FOP Relevant Specifications</fo:block>
  115. </fo:table-cell>
  116. </fo:table-row>
  117. <fo:table-row line-height="12pt">
  118. <fo:table-cell>
  119. <fo:block text-align="end">K) </fo:block>
  120. </fo:table-cell>
  121. <fo:table-cell>
  122. <fo:block text-align="start">Licence</fo:block>
  123. </fo:table-cell>
  124. </fo:table-row>
  125. </fo:table-body>
  126. </fo:table>
  127. </fo:flow>
  128. </fo:page-sequence>
  129. </fo:root>