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.

background.fo 21KB

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