ZVON > References > Zvon Example Repository
Example repository: index | categories | search

All > XSL FO > Text > Font style

Rendered image | PDF document
Use attribute font-style to set the text style.


Source
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" >
     <fo:layout-master-set>
          <fo:simple-page-master master-name="simple">
               <fo:region-body/>
          </fo:simple-page-master>
     </fo:layout-master-set>
     <fo:page-sequence master-reference="simple">
          <fo:flow flow-name="xsl-region-body">
               <fo:block font-style="oblique">Oblique text.</fo:block>
               <fo:block font-style="italic">Italic text.</fo:block>
          </fo:flow>
     </fo:page-sequence>
</fo:root>