正文

XSL-FO 与 XSLT2008-10-05 15:42:00

【评论】 【打印】 【字体: 】 本文链接:http://blog.pfan.cn/yzrj/38704.html

分享到:

fo:block    font-size="14pt" font-family="verdana" color="red"    space-before="5mm" space-after="5mm">W3School</fo:block><fo:block    text-indent="5mm"    font-family="verdana" font-size="12pt"    space-before="5mm" space-after="5mm">At W3School you will find all the Web-building tutorials youneed, from basic HTML and XHTML to advanced XML, XSL, Multimediaand WAP.</fo:block> 结果: 此例来自有关 XSL-FO 块区域的那一节。 来自 XSLT 的帮助 从文档移除 XSL-FO 信息:<header> W3School </header> <paragraph> At W3School you 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" space-before="5mm" space-after="5mm"> <xsl:apply-templates/> </fo:block> </xsl:template> 产生的结果是相同的:

阅读(1099) | 评论(0)


版权声明:编程爱好者网站为此博客服务提供商,如本文牵涉到版权问题,编程爱好者网站不承担相关责任,如有版权问题请直接与本文作者联系解决。谢谢!

评论

暂无评论
您需要登录后才能评论,请 登录 或者 注册