例7-20.xsl

来自「深入浅出XML示例下载」· XSL 代码 · 共 28 行

XSL
28
字号
<?xml version="1.0" encoding="GB2312"  ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"
 xmlns:fo="http://www.w3.org/TR/WD-xsl/FO"  result-ns="fo" indent-result="yes">
<xsl:template match="/">
  <fo:page-sequence font-family="宋体">
    <fo:simple-page-master name='scrolling'/>
    <fo:queue queue-name='body'>
       <xsl:process-children/>
    </fo:queue>
  </fo:page-sequence>
</xsl:template>
<xsl:template match="Title">
 <fo:block font-weight="bold">
       <xsl:process-children/>
 </fo:block>
</xsl:template>
<xsl:template match="p">
 <fo:block>
       <xsl:process-children/>
 </fo:block> 
</xsl:template>
<xsl:template match="emph">
 <fo:sequence font-style="italic">
       <xsl:process-children/>
 </fo:sequence>
</xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?