Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <fo:layout-master-set>
  2. <fo:simple-page-master
  3. master-name="A4"
  4. page-width="29.7cm"
  5. page-height="21.0cm"
  6. margin-top="0.5cm"
  7. margin-bottom="1.0cm"
  8. margin-left="4.0cm"
  9. margin-right="1.0cm"
  10. >
  11. <fo:region-body margin="1.0cm" writing-mode="rl"/>
  12. <fo:region-before extent="5.0cm" />
  13. <fo:region-after extent="1.0cm"/>
  14. <fo:region-start margin="3.0cm" />
  15. </fo:simple-page-master>
  16. </fo:layout-master-set>
  17. <fo:page-sequence master-reference="A4">
  18.  
  19. <fo:static-content flow-name="xsl-region-start">
  20.  
  21. <fo:block-container reference-orientation="90" >
  22.  
  23. <fo:block text-align="center">
  24.  
  25. <fo:external-graphic src="path to image" content-height="scale-to-fit" height="1cm" width="7cm" scaling="non-uniform" />
  26. </fo:block>
  27.  
  28.  
  29.  
  30. </fo:block-container>
  31.  
  32. </fo:static-content>
  33.  
  34. <fo:flow flow-name="xsl-region-body">
  35.  
  36. <fo:table table-layout="fixed" width="50%" height="100%" left="5cm">
  37.  
  38. <fo:table-column column-width="13cm" />
  39.  
  40. <fo:table-column column-width="8cm" />
  41.  
  42. <fo:table-body>
  43.  
  44. <fo:table-row>
  45. <fo:table-cell>
  46. <fo:block>
  47.  
  48. Lorem ipsum text
  49.  
  50. </fo:block>
  51.  
  52. </fo:table-cell>
  53.  
  54. </fo:table-row>
  55.  
  56.  
  57. </fo:table-body>
  58.  
  59. </fo:table>
  60. </fo:flow>
  61. </fo:page-sequence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement