XSL-FO Óë XSLT

XSL-FO Óë XSLT ¿É±Ë´Ë»¥Öú¡£

»¹¼ÇµÃÕâ¸öÀý×ÓÂð£¿

<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 you
need, from basic HTML and XHTML to advanced XML, XSL, Multimedia
and 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>

²úÉúµÄ½á¹ûÊÇÏàͬµÄ£º

VUE