| HTML Tutorials |
|
|
| XML Tutorials |
|
|
| Browser Scripting |
|
|
| Server Scripting |
|
|
| .NET (dotnet) |
|
|
| Multimedia |
|
|
| Web Building |
|
|
| Java Tutorials |
|
|
| Programming Langauges |
|
|
| Soft Skills |
|
|
|
|
XSL-FO Tables
|
There are nine XSL-FO objects used to create tables:
|
|
- 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
|
|
Example:
|
The <fo:table-and-caption> element is use to define a table. It contains
a <fo:table> and an optional <fo:caption> element.
The <fo:table> element contains optional element like <fo:table-column>,
<fo:table-header>, <fo:table-body>, <fo:table-footer> etc.
Each of these elements has one or more <fo:table-row> elements, with
one or more <fo:table-cell> elements:
|
|
<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>
|
Output
| Car |
Price |
| Volvo |
$50000 |
| SAAB |
$48000 |
Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
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
|
|
| HTML Quizes |
|
|
| XML Quizes |
|
|
| Browser Scripting Quizes |
|
|
| Server Scripting Quizes |
|
|
| .NET (dotnet) Quizes |
|
|
| Multimedia Quizes |
|
|
| Web Building Quizes |
|
|
| Java Quizes |
|
|
| Programming Langauges Quizes |
|
|
| Soft Skills Quizes |
|
|
|