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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  3. <fo:layout-master-set>
  4. <fo:simple-page-master master-name="first"
  5. margin-right="1.5cm"
  6. margin-left="1.5cm"
  7. margin-bottom="2cm"
  8. margin-top="1cm"
  9. page-width="21cm"
  10. page-height="29.7cm">
  11. <fo:region-body margin-top="1cm"/>
  12. <fo:region-before extent="1cm"/>
  13. <fo:region-after extent="1.5cm"/>
  14. </fo:simple-page-master>
  15. </fo:layout-master-set>
  16. <fo:page-sequence master-reference="first">
  17. <fo:static-content flow-name="xsl-region-before">
  18. <fo:block line-height="14pt" font-size="10pt"
  19. text-align="end">table examples</fo:block>
  20. </fo:static-content>
  21. <fo:static-content flow-name="xsl-region-after">
  22. <fo:block line-height="14pt" font-size="10pt"
  23. text-align="end">Page <fo:page-number/></fo:block>
  24. </fo:static-content>
  25. <fo:flow flow-name="xsl-region-body">
  26. <fo:block space-before.optimum="3pt" space-after.optimum="15pt">
  27. Table 1: cell background
  28. </fo:block>
  29. <fo:table>
  30. <fo:table-column column-width="3cm"/>
  31. <fo:table-column column-width="3cm"/>
  32. <fo:table-column column-width="3cm"/>
  33. <fo:table-column column-width="3cm"/>
  34. <fo:table-column column-width="2cm"/>
  35. <fo:table-body>
  36. <fo:table-row>
  37. <fo:table-cell background-color="green">
  38. <fo:block text-align="center">
  39. green cell
  40. </fo:block>
  41. </fo:table-cell>
  42. <fo:table-cell background-color="red">
  43. <fo:block text-align="center">
  44. red cell
  45. </fo:block>
  46. </fo:table-cell>
  47. <fo:table-cell background-color="blue">
  48. <fo:block text-align="center">
  49. blue cell
  50. </fo:block>
  51. </fo:table-cell>
  52. <fo:table-cell background-color="yellow">
  53. <fo:block text-align="center">
  54. yellow cell
  55. </fo:block>
  56. </fo:table-cell>
  57. <fo:table-cell>
  58. <fo:block text-align="center">
  59. text for an extra line in the table row
  60. </fo:block>
  61. </fo:table-cell>
  62. </fo:table-row>
  63. </fo:table-body>
  64. </fo:table>
  65. <fo:block space-before.optimum="15pt" space-after.optimum="15pt">
  66. Table 1: row background
  67. </fo:block>
  68. <fo:table>
  69. <fo:table-column column-width="3cm"/>
  70. <fo:table-column column-width="3cm"/>
  71. <fo:table-column column-width="3cm"/>
  72. <fo:table-column column-width="3cm"/>
  73. <fo:table-body>
  74. <fo:table-row background-color="green">
  75. <fo:table-cell>
  76. <fo:block text-align="center">
  77. row with
  78. </fo:block>
  79. </fo:table-cell>
  80. <fo:table-cell>
  81. <fo:block text-align="center">
  82. green
  83. </fo:block>
  84. </fo:table-cell>
  85. <fo:table-cell>
  86. <fo:block text-align="center">
  87. background
  88. </fo:block>
  89. </fo:table-cell>
  90. <fo:table-cell>
  91. <fo:block text-align="center">
  92. text for an extra line in the table row
  93. </fo:block>
  94. </fo:table-cell>
  95. </fo:table-row>
  96. <fo:table-row background-color="red">
  97. <fo:table-cell>
  98. <fo:block text-align="center">
  99. row with
  100. </fo:block>
  101. </fo:table-cell>
  102. <fo:table-cell>
  103. <fo:block text-align="center">
  104. red
  105. </fo:block>
  106. </fo:table-cell>
  107. <fo:table-cell>
  108. <fo:block text-align="center">
  109. background
  110. </fo:block>
  111. </fo:table-cell>
  112. <fo:table-cell>
  113. <fo:block text-align="center">
  114. text for an extra line in the table row
  115. </fo:block>
  116. </fo:table-cell>
  117. </fo:table-row>
  118. <fo:table-row background-color="blue">
  119. <fo:table-cell>
  120. <fo:block text-align="center">
  121. row with
  122. </fo:block>
  123. </fo:table-cell>
  124. <fo:table-cell>
  125. <fo:block text-align="center">
  126. blue
  127. </fo:block>
  128. </fo:table-cell>
  129. <fo:table-cell>
  130. <fo:block text-align="center">
  131. background
  132. </fo:block>
  133. </fo:table-cell>
  134. <fo:table-cell>
  135. <fo:block text-align="center">
  136. text for an extra line in the table row
  137. </fo:block>
  138. </fo:table-cell>
  139. </fo:table-row>
  140. </fo:table-body>
  141. </fo:table>
  142. <fo:block space-before.optimum="15pt" space-after.optimum="15pt">
  143. Table 1: column background
  144. </fo:block>
  145. <fo:table>
  146. <fo:table-column column-width="3cm" background-color="green"/>
  147. <fo:table-column column-width="3cm" background-color="red"/>
  148. <fo:table-column column-width="3cm" background-color="blue"/>
  149. <fo:table-column column-width="3cm" background-color="yellow"/>
  150. <fo:table-column column-width="3cm"/>
  151. <fo:table-body>
  152. <fo:table-row>
  153. <fo:table-cell>
  154. <fo:block text-align="center">
  155. table columns
  156. </fo:block>
  157. </fo:table-cell>
  158. <fo:table-cell>
  159. <fo:block text-align="center">
  160. with
  161. </fo:block>
  162. </fo:table-cell>
  163. <fo:table-cell>
  164. <fo:block text-align="center">
  165. different
  166. </fo:block>
  167. </fo:table-cell>
  168. <fo:table-cell>
  169. <fo:block text-align="center">
  170. backgrounds
  171. </fo:block>
  172. </fo:table-cell>
  173. <fo:table-cell>
  174. <fo:block text-align="center">
  175. text for an extra line in the table row
  176. </fo:block>
  177. </fo:table-cell>
  178. </fo:table-row>
  179. <fo:table-row>
  180. <fo:table-cell>
  181. <fo:block text-align="center">
  182. extra
  183. </fo:block>
  184. </fo:table-cell>
  185. <fo:table-cell>
  186. <fo:block text-align="center">
  187. table row
  188. </fo:block>
  189. </fo:table-cell>
  190. <fo:table-cell>
  191. <fo:block text-align="center">
  192. </fo:block>
  193. </fo:table-cell>
  194. <fo:table-cell>
  195. <fo:block text-align="center">
  196. </fo:block>
  197. </fo:table-cell>
  198. <fo:table-cell>
  199. <fo:block text-align="center">
  200. text for an extra line in the table row
  201. </fo:block>
  202. </fo:table-cell>
  203. </fo:table-row>
  204. </fo:table-body>
  205. </fo:table>
  206. <fo:block space-before.optimum="260pt" space-after.optimum="15pt">
  207. Table 1: column backgrounds over page
  208. </fo:block>
  209. <fo:table>
  210. <fo:table-column column-width="3cm" background-color="green"/>
  211. <fo:table-column column-width="3cm" background-color="red"/>
  212. <fo:table-column column-width="3cm" background-color="blue"/>
  213. <fo:table-column column-width="3cm" background-color="orange"/>
  214. <fo:table-column column-width="3cm"/>
  215. <fo:table-body>
  216. <fo:table-row>
  217. <fo:table-cell>
  218. <fo:block text-align="center">
  219. table columns
  220. </fo:block>
  221. </fo:table-cell>
  222. <fo:table-cell>
  223. <fo:block text-align="center">
  224. with
  225. </fo:block>
  226. </fo:table-cell>
  227. <fo:table-cell>
  228. <fo:block text-align="center">
  229. different
  230. </fo:block>
  231. </fo:table-cell>
  232. <fo:table-cell>
  233. <fo:block text-align="center">
  234. backgrounds
  235. </fo:block>
  236. </fo:table-cell>
  237. <fo:table-cell>
  238. <fo:block text-align="center">
  239. text for an extra line in the table row
  240. </fo:block>
  241. </fo:table-cell>
  242. </fo:table-row>
  243. <fo:table-row>
  244. <fo:table-cell>
  245. <fo:block text-align="center">
  246. extra
  247. </fo:block>
  248. </fo:table-cell>
  249. <fo:table-cell>
  250. <fo:block text-align="center">
  251. table row
  252. </fo:block>
  253. </fo:table-cell>
  254. <fo:table-cell>
  255. <fo:block text-align="center">
  256. </fo:block>
  257. </fo:table-cell>
  258. <fo:table-cell>
  259. <fo:block text-align="center">
  260. </fo:block>
  261. </fo:table-cell>
  262. <fo:table-cell>
  263. <fo:block text-align="center">
  264. text for an extra line in the table row
  265. </fo:block>
  266. </fo:table-cell>
  267. </fo:table-row>
  268. </fo:table-body>
  269. </fo:table>
  270. <fo:block space-before.optimum="15pt" space-after.optimum="15pt">
  271. Table 1: body background
  272. </fo:block>
  273. <fo:table>
  274. <fo:table-column column-width="3cm"/>
  275. <fo:table-column column-width="3cm"/>
  276. <fo:table-column column-width="3cm"/>
  277. <fo:table-column column-width="3cm"/>
  278. <fo:table-column column-width="3cm"/>
  279. <fo:table-body background-color="green" border-left-width="0.5pt">
  280. <fo:table-row>
  281. <fo:table-cell>
  282. <fo:block text-align="center">
  283. body with
  284. </fo:block>
  285. </fo:table-cell>
  286. <fo:table-cell>
  287. <fo:block text-align="center">
  288. green
  289. </fo:block>
  290. </fo:table-cell>
  291. <fo:table-cell>
  292. <fo:block text-align="center">
  293. background
  294. </fo:block>
  295. </fo:table-cell>
  296. <fo:table-cell>
  297. <fo:block text-align="center">
  298. </fo:block>
  299. </fo:table-cell>
  300. <fo:table-cell>
  301. <fo:block text-align="center">
  302. text for an extra line in the table row
  303. </fo:block>
  304. </fo:table-cell>
  305. </fo:table-row>
  306. </fo:table-body>
  307. </fo:table>
  308. <fo:table>
  309. <fo:table-column column-width="3cm"/>
  310. <fo:table-column column-width="3cm"/>
  311. <fo:table-column column-width="3cm"/>
  312. <fo:table-column column-width="3cm"/>
  313. <fo:table-column column-width="3cm"/>
  314. <fo:table-body background-color="red">
  315. <fo:table-row>
  316. <fo:table-cell>
  317. <fo:block text-align="center">
  318. body with
  319. </fo:block>
  320. </fo:table-cell>
  321. <fo:table-cell>
  322. <fo:block text-align="center">
  323. red
  324. </fo:block>
  325. </fo:table-cell>
  326. <fo:table-cell>
  327. <fo:block text-align="center">
  328. background
  329. </fo:block>
  330. </fo:table-cell>
  331. <fo:table-cell>
  332. <fo:block text-align="center">
  333. </fo:block>
  334. </fo:table-cell>
  335. <fo:table-cell>
  336. <fo:block text-align="center">
  337. text for an extra line in the table row
  338. </fo:block>
  339. </fo:table-cell>
  340. </fo:table-row>
  341. </fo:table-body>
  342. </fo:table>
  343. <fo:table>
  344. <fo:table-column column-width="3cm"/>
  345. <fo:table-column column-width="3cm"/>
  346. <fo:table-column column-width="3cm"/>
  347. <fo:table-column column-width="3cm"/>
  348. <fo:table-column column-width="3cm"/>
  349. <fo:table-body background-color="blue">
  350. <fo:table-row>
  351. <fo:table-cell>
  352. <fo:block text-align="center">
  353. body with
  354. </fo:block>
  355. </fo:table-cell>
  356. <fo:table-cell>
  357. <fo:block text-align="center">
  358. blue
  359. </fo:block>
  360. </fo:table-cell>
  361. <fo:table-cell>
  362. <fo:block text-align="center">
  363. background
  364. </fo:block>
  365. </fo:table-cell>
  366. <fo:table-cell>
  367. <fo:block text-align="center">
  368. </fo:block>
  369. </fo:table-cell>
  370. <fo:table-cell>
  371. <fo:block text-align="center">
  372. text for an extra line in the table row
  373. </fo:block>
  374. </fo:table-cell>
  375. </fo:table-row>
  376. </fo:table-body>
  377. </fo:table>
  378. <fo:table>
  379. <fo:table-column column-width="3cm"/>
  380. <fo:table-column column-width="3cm"/>
  381. <fo:table-column column-width="3cm"/>
  382. <fo:table-column column-width="3cm"/>
  383. <fo:table-column column-width="3cm"/>
  384. <fo:table-body background-color="yellow">
  385. <fo:table-row>
  386. <fo:table-cell>
  387. <fo:block text-align="center">
  388. body with
  389. </fo:block>
  390. </fo:table-cell>
  391. <fo:table-cell>
  392. <fo:block text-align="center">
  393. yellow
  394. </fo:block>
  395. </fo:table-cell>
  396. <fo:table-cell>
  397. <fo:block text-align="center">
  398. background
  399. </fo:block>
  400. </fo:table-cell>
  401. <fo:table-cell>
  402. <fo:block text-align="center">
  403. </fo:block>
  404. </fo:table-cell>
  405. <fo:table-cell>
  406. <fo:block text-align="center">
  407. text for an extra line in the table row
  408. </fo:block>
  409. </fo:table-cell>
  410. </fo:table-row>
  411. </fo:table-body>
  412. </fo:table>
  413. <fo:block space-before.optimum="15pt" space-after.optimum="15pt">
  414. Table 1: table background
  415. </fo:block>
  416. <fo:table background-color="green">
  417. <fo:table-column column-width="3cm"/>
  418. <fo:table-column column-width="3cm"/>
  419. <fo:table-column column-width="3cm"/>
  420. <fo:table-column column-width="3cm"/>
  421. <fo:table-column column-width="3cm"/>
  422. <fo:table-body>
  423. <fo:table-row>
  424. <fo:table-cell>
  425. <fo:block text-align="center">
  426. table with
  427. </fo:block>
  428. </fo:table-cell>
  429. <fo:table-cell>
  430. <fo:block text-align="center">
  431. green
  432. </fo:block>
  433. </fo:table-cell>
  434. <fo:table-cell>
  435. <fo:block text-align="center">
  436. background
  437. </fo:block>
  438. </fo:table-cell>
  439. <fo:table-cell>
  440. <fo:block text-align="center">
  441. </fo:block>
  442. </fo:table-cell>
  443. <fo:table-cell>
  444. <fo:block text-align="center">
  445. text for an extra line in the table row
  446. </fo:block>
  447. </fo:table-cell>
  448. </fo:table-row>
  449. </fo:table-body>
  450. </fo:table>
  451. <fo:table background-color="red">
  452. <fo:table-column column-width="3cm"/>
  453. <fo:table-column column-width="3cm"/>
  454. <fo:table-column column-width="3cm"/>
  455. <fo:table-column column-width="3cm"/>
  456. <fo:table-column column-width="3cm"/>
  457. <fo:table-body>
  458. <fo:table-row>
  459. <fo:table-cell>
  460. <fo:block text-align="center">
  461. table with
  462. </fo:block>
  463. </fo:table-cell>
  464. <fo:table-cell>
  465. <fo:block text-align="center">
  466. red
  467. </fo:block>
  468. </fo:table-cell>
  469. <fo:table-cell>
  470. <fo:block text-align="center">
  471. background
  472. </fo:block>
  473. </fo:table-cell>
  474. <fo:table-cell>
  475. <fo:block text-align="center">
  476. </fo:block>
  477. </fo:table-cell>
  478. <fo:table-cell>
  479. <fo:block text-align="center">
  480. text for an extra line in the table row
  481. </fo:block>
  482. </fo:table-cell>
  483. </fo:table-row>
  484. </fo:table-body>
  485. </fo:table>
  486. <fo:block space-before.optimum="15pt" space-after.optimum="15pt">
  487. Table 1: combinations
  488. </fo:block>
  489. <fo:table background-color="green">
  490. <fo:table-column column-width="2.5cm"/>
  491. <fo:table-column column-width="2.5cm" background-color="green"/>
  492. <fo:table-column column-width="2.5cm" background-color="red"/>
  493. <fo:table-column column-width="2.5cm" background-color="blue"/>
  494. <fo:table-column column-width="2.5cm" background-color="yellow"/>
  495. <fo:table-column column-width="2.5cm"/>
  496. <fo:table-body background-color="aqua">
  497. <fo:table-row background-color="green">
  498. <fo:table-cell background-color="green">
  499. <fo:block text-align="center">
  500. a
  501. </fo:block>
  502. </fo:table-cell>
  503. <fo:table-cell background-color="red">
  504. <fo:block text-align="center">
  505. b
  506. </fo:block>
  507. </fo:table-cell>
  508. <fo:table-cell background-color="blue">
  509. <fo:block text-align="center">
  510. c
  511. </fo:block>
  512. </fo:table-cell>
  513. <fo:table-cell background-color="yellow">
  514. <fo:block text-align="center">
  515. d
  516. </fo:block>
  517. </fo:table-cell>
  518. <fo:table-cell>
  519. <fo:block text-align="center">
  520. e
  521. </fo:block>
  522. </fo:table-cell>
  523. <fo:table-cell>
  524. <fo:block text-align="center">
  525. text for an extra line in the table row
  526. </fo:block>
  527. </fo:table-cell>
  528. </fo:table-row>
  529. <fo:table-row background-color="red">
  530. <fo:table-cell>
  531. <fo:block text-align="center">
  532. a
  533. </fo:block>
  534. </fo:table-cell>
  535. <fo:table-cell background-color="red">
  536. <fo:block text-align="center">
  537. b
  538. </fo:block>
  539. </fo:table-cell>
  540. <fo:table-cell background-color="blue">
  541. <fo:block text-align="center">
  542. c
  543. </fo:block>
  544. </fo:table-cell>
  545. <fo:table-cell background-color="yellow">
  546. <fo:block text-align="center">
  547. d
  548. </fo:block>
  549. </fo:table-cell>
  550. <fo:table-cell background-color="orange">
  551. <fo:block text-align="center">
  552. e
  553. </fo:block>
  554. </fo:table-cell>
  555. <fo:table-cell>
  556. <fo:block text-align="center">
  557. text for an extra line in the table row
  558. </fo:block>
  559. </fo:table-cell>
  560. </fo:table-row>
  561. <fo:table-row background-color="blue">
  562. <fo:table-cell background-color="green">
  563. <fo:block text-align="center">
  564. a
  565. </fo:block>
  566. </fo:table-cell>
  567. <fo:table-cell>
  568. <fo:block text-align="center">
  569. b
  570. </fo:block>
  571. </fo:table-cell>
  572. <fo:table-cell background-color="blue">
  573. <fo:block text-align="center">
  574. c
  575. </fo:block>
  576. </fo:table-cell>
  577. <fo:table-cell background-color="yellow">
  578. <fo:block text-align="center">
  579. d
  580. </fo:block>
  581. </fo:table-cell>
  582. <fo:table-cell background-color="orange">
  583. <fo:block text-align="center">
  584. e
  585. </fo:block>
  586. </fo:table-cell>
  587. <fo:table-cell>
  588. <fo:block text-align="center">
  589. text for an extra line in the table row
  590. </fo:block>
  591. </fo:table-cell>
  592. </fo:table-row>
  593. <fo:table-row background-color="yellow">
  594. <fo:table-cell background-color="green">
  595. <fo:block text-align="center">
  596. a
  597. </fo:block>
  598. </fo:table-cell>
  599. <fo:table-cell background-color="red">
  600. <fo:block text-align="center">
  601. b
  602. </fo:block>
  603. </fo:table-cell>
  604. <fo:table-cell>
  605. <fo:block text-align="center">
  606. c
  607. </fo:block>
  608. </fo:table-cell>
  609. <fo:table-cell background-color="yellow">
  610. <fo:block text-align="center">
  611. d
  612. </fo:block>
  613. </fo:table-cell>
  614. <fo:table-cell background-color="orange">
  615. <fo:block text-align="center">
  616. e
  617. </fo:block>
  618. </fo:table-cell>
  619. <fo:table-cell>
  620. <fo:block text-align="center">
  621. text for an extra line in the table row
  622. </fo:block>
  623. </fo:table-cell>
  624. </fo:table-row>
  625. <fo:table-row background-color="orange">
  626. <fo:table-cell background-color="green">
  627. <fo:block text-align="center">
  628. a
  629. </fo:block>
  630. </fo:table-cell>
  631. <fo:table-cell background-color="red">
  632. <fo:block text-align="center">
  633. b
  634. </fo:block>
  635. </fo:table-cell>
  636. <fo:table-cell background-color="blue">
  637. <fo:block text-align="center">
  638. c
  639. </fo:block>
  640. </fo:table-cell>
  641. <fo:table-cell background-color="yellow">
  642. <fo:block text-align="center">
  643. d
  644. </fo:block>
  645. </fo:table-cell>
  646. <fo:table-cell background-color="orange">
  647. <fo:block text-align="center">
  648. e
  649. </fo:block>
  650. </fo:table-cell>
  651. <fo:table-cell>
  652. <fo:block text-align="center">
  653. text for an extra line in the table row
  654. </fo:block>
  655. </fo:table-cell>
  656. </fo:table-row>
  657. <fo:table-row>
  658. <fo:table-cell background-color="green">
  659. <fo:block text-align="center">
  660. a
  661. </fo:block>
  662. </fo:table-cell>
  663. <fo:table-cell background-color="red">
  664. <fo:block text-align="center">
  665. b
  666. </fo:block>
  667. </fo:table-cell>
  668. <fo:table-cell background-color="blue">
  669. <fo:block text-align="center">
  670. c
  671. </fo:block>
  672. </fo:table-cell>
  673. <fo:table-cell background-color="yellow">
  674. <fo:block text-align="center">
  675. d
  676. </fo:block>
  677. </fo:table-cell>
  678. <fo:table-cell background-color="orange">
  679. <fo:block text-align="center">
  680. e
  681. </fo:block>
  682. </fo:table-cell>
  683. <fo:table-cell>
  684. <fo:block text-align="center">
  685. text for an extra line in the table row
  686. </fo:block>
  687. </fo:table-cell>
  688. </fo:table-row>
  689. </fo:table-body>
  690. <fo:table-body space-before.optimum="10pt" space-after.optimum="10pt">
  691. <fo:table-row background-color="blue">
  692. <fo:table-cell>
  693. <fo:block text-align="center">
  694. table with
  695. </fo:block>
  696. </fo:table-cell>
  697. <fo:table-cell>
  698. <fo:block text-align="center">
  699. blue
  700. </fo:block>
  701. </fo:table-cell>
  702. <fo:table-cell>
  703. <fo:block text-align="center">
  704. row
  705. </fo:block>
  706. </fo:table-cell>
  707. <fo:table-cell>
  708. <fo:block text-align="center">
  709. </fo:block>
  710. </fo:table-cell>
  711. <fo:table-cell>
  712. <fo:block text-align="center">
  713. </fo:block>
  714. </fo:table-cell>
  715. <fo:table-cell>
  716. <fo:block text-align="center">
  717. text for an extra line in the table row
  718. </fo:block>
  719. </fo:table-cell>
  720. </fo:table-row>
  721. <fo:table-row>
  722. <fo:table-cell>
  723. <fo:block text-align="center">
  724. table with
  725. </fo:block>
  726. </fo:table-cell>
  727. <fo:table-cell>
  728. <fo:block text-align="center">
  729. normal
  730. </fo:block>
  731. </fo:table-cell>
  732. <fo:table-cell>
  733. <fo:block text-align="center">
  734. row
  735. </fo:block>
  736. </fo:table-cell>
  737. <fo:table-cell>
  738. <fo:block text-align="center">
  739. </fo:block>
  740. </fo:table-cell>
  741. <fo:table-cell>
  742. <fo:block text-align="center">
  743. </fo:block>
  744. </fo:table-cell>
  745. <fo:table-cell>
  746. <fo:block text-align="center">
  747. text for an extra line in the table row
  748. </fo:block>
  749. </fo:table-cell>
  750. </fo:table-row>
  751. </fo:table-body>
  752. </fo:table>
  753. </fo:flow>
  754. </fo:page-sequence>
  755. </fo:root>