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-family.fo 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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-before extent="2.5cm"/>
  12. <fo:region-body margin-top="3cm" margin-bottom="3cm"/>
  13. <fo:region-after extent="2.5cm"/>
  14. </fo:simple-page-master>
  15. </fo:layout-master-set>
  16. <fo:page-sequence master-name="simplePM">
  17. <fo:flow flow-name="xsl-region-body">
  18. <fo:block>
  19. default:
  20. </fo:block>
  21. <fo:block text-align="center">
  22. This is a simple fo text in FOP default font.
  23. </fo:block>
  24. <fo:block>
  25. sans-serif:
  26. </fo:block>
  27. <fo:block text-align="center" font-family="sans-serif">
  28. This is a simple fo text in sans-serif font.
  29. </fo:block>
  30. <fo:block>
  31. monospace:
  32. </fo:block>
  33. <fo:block text-align="center" font-family="monospace">
  34. This is a simple fo text in monospace font.
  35. </fo:block>
  36. <fo:block>
  37. Courier:
  38. </fo:block>
  39. <fo:block text-align="center" font-family="Courier">
  40. This is a simple fo text in Courier font.
  41. </fo:block>
  42. <fo:block>
  43. Helvetica:
  44. </fo:block>
  45. <fo:block text-align="center" font-family="Helvetica">
  46. This is a simple fo text in Helvetica font.
  47. </fo:block>
  48. <fo:block>
  49. Symbol:
  50. </fo:block>
  51. <fo:block text-align="center" font-family="Symbol">
  52. This is a simple fo text in Symbol font.
  53. </fo:block>
  54. <fo:block>
  55. Times Roman:
  56. </fo:block>
  57. <fo:block text-align="center" font-family="Times Roman">
  58. This is a simple fo text in Times Roman font.
  59. </fo:block>
  60. <fo:block>
  61. ZapfDingbats:
  62. </fo:block>
  63. <fo:block text-align="center" font-family="ZapfDingbats">
  64. This is a simple fo text in ZapfDingBats font.
  65. </fo:block>
  66. </fo:flow>
  67. </fo:page-sequence>
  68. </fo:root>