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.5KB

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