XSL-FO 与 XSLT 可彼此互助。
还记得这个实例吗?
<fo:block font-size="14pt" font-family="verdana" color="red"
space-before="5mm" space-after="5mm">
RUNOOB
</fo:block>
<fo:block text-indent="5mm" font-family="verdana" font-size="12pt">
At RUNOOB you will find all the Web-building tutorials you
need, from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.
</fo:block>
结果:
RUN
At RUN you will find all the Web-building tutorials you need, from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.
上面的实例来自于有关 XSL-FO 块区域的那一章节。
来自 XSLT 的帮助
从文档移除 XSL-FO 信息:
<header>RUNOOB</header>
<paragraph>At RUNyou will find all the Web-building tutorials you
need, from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.
</paragraph>
添加 XSLT 转换:
<xsl:template match="header">
<fo:block font-size="14pt" font-family="verdana" color="red"
space-before="5mm" space-after="5mm">
<xsl:apply-templates/>
</fo:block>
</xsl:template>
<xsl:template match="paragraph">
<fo:block text-indent="5mm" font-family="verdana" font-size="12pt">
<xsl:apply-templates/>
</fo:block>
</xsl:template>
产生的结果是相同的:
RUN
At RUN you will find all the Web-building tutorials you need, from basic HTML and XHTML to advanced XML, XSL, Multimedia and WAP.
本文发布于:2023-02-28 20:57:00,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/zhishi/a/167771155998817.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:xsl(小森林).doc
本文 PDF 下载地址:xsl(小森林).pdf
留言与评论(共有 0 条评论) |