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.

font-size.fo 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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="simplePM"
  5. page-height="25cm"
  6. page-width="20cm"
  7. margin-top="1cm"
  8. margin-bottom="1cm"
  9. margin-left="1.5cm"
  10. margin-right="1.5cm">
  11. <fo:region-body margin-top="3cm" margin-bottom="3cm"/>
  12. <fo:region-before extent="2.5cm"/>
  13. <fo:region-after extent="2.5cm"/>
  14. </fo:simple-page-master>
  15. </fo:layout-master-set>
  16. <fo:page-sequence master-reference="simplePM">
  17. <fo:flow flow-name="xsl-region-body">
  18. <fo:block>
  19. This is a simple fo text in FOP default font size and default font.
  20. </fo:block>
  21. <fo:block font-family="Courier" font-size="8pt">
  22. This is a simple fo text in 8pt font Courier.
  23. </fo:block>
  24. <fo:block font-family="Courier" font-size="10pt">
  25. This is a simple fo text in 10pt font.
  26. </fo:block>
  27. <fo:block font-family="Courier" font-size="12pt">
  28. This is a simple fo text in 12pt font.
  29. </fo:block>
  30. <fo:block font-family="Courier" font-size="14pt">
  31. This is a simple fo text in 14pt font.
  32. </fo:block>
  33. <fo:block font-family="Courier" font-size="16pt">
  34. This is a simple fo text in 16pt font.
  35. </fo:block>
  36. <fo:block font-family="Courier" font-size="18pt">
  37. This is a simple fo text in 18pt font.
  38. </fo:block>
  39. <fo:block font-family="Courier" font-size="20pt">
  40. This is a simple fo text in 20pt font.
  41. </fo:block>
  42. <fo:block font-family="Courier" font-size="24pt">
  43. This is a simple fo text in 24pt font.
  44. </fo:block>
  45. <fo:block font-family="Courier" font-size="32pt">
  46. This is a simple fo text in 32pt font.
  47. </fo:block>
  48. </fo:flow>
  49. </fo:page-sequence>
  50. </fo:root>