1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
xmlns:fo="http://www.w3.org/XSL/Format/1.0">
<xsl:template match="para">
<fo:block>
<xsl:apply-templates/>
</fo:block>
</xsl:template>
<xsl:template match="emphasis">
<fo:sequence font-style="italic">
<xsl:apply-templates/>
</fo:sequence>
</xsl:template>
<xsl:template match="emphasis/emphasis">
<fo:sequence font-style="upright">
<xsl:apply-templates/>
</fo:sequence>
</xsl:template>
</xsl:stylesheet>
|