Tabelle di XSL-FO
|
Ci sono nove oggetti di XSL-FO usati per generare le tabelle:
|
|
- fo:table-and-caption
- fo:table
- fo:table-caption
- fo:table-column
- fo:table-header
- fo:table-footer
- fo:table-body
- fo:table-row
- fo:table-cell
|
Esempio:
|
Il <fo: l'elemento del table-and-caption> è uso definire una tabella. Contiene un <fo: table> e un <fo facoltativo: elemento del caption>.
Il <fo: l'elemento del table> contiene l'elemento facoltativo come il <fo: table-column>, <fo: table-header>, <fo: table-body>, <fo: table-footer> ecc. Ciascuno di questi elementi ha uno o più <fo: elementi del table-row>, con gli uno o più <fo: elementi del table-cell>:
|
<xsl:template match="ol">
<fo:list-block
space-before="0.25em" space-after="0.25em">
<xsl:apply-templates/>
</fo:list-block>
</xsl:template>
<xsl:template match="ol/li">
<fo:list-item space-after="0.5ex">
<fo:list-item-label start-indent="1em">
<fo:block>
<xsl:number/>.
</fo:block>
</fo:list-item-label>
<fo:list-item-body>
<fo:block>
<xsl:apply-templates/>
</fo:block>
</fo:list-item-body>
</fo:list-item>
</xsl:template>
|
Uscita
Car |
Price |
Volvo |
$50000 |
SAAB |
$48000 |
Keywords :
XSL-FO Table,
xsl fo table cell,
fo page break,
xsl fo table,
xsl line break,
apache fo,
xsl reference,
xsl examples,
xsl example,
xsl count,
xsl text,
docbook xsl,
xsl processor,
xsl fo block,
xsl document,
xsl fo inline,
fo reference,
pdf fo,
svg xsl,
xsl stylesheet,
docbook fo,
text table,
fo examples,
display xsl,
fo text,
xsl using
|