XSL-FO uses List Blocks to define lists.
XSL-FO用列表块区定义列表
XSL-FO List Blocks
XSL-FO列表区
There are four XSL-FO objects used to create lists:
用于创建列表的XSL-FO对象有以下四个:
- fo:list-block (含有整个列表)
- fo:list-item (含有列表里的每一项)
- fo:list-item-label (含有列表项的标签,典型的例子如:一个<fo:block>元素含有一个数字,字符,等等.)
- fo:list-item-body (含有列表项的内容和主体,典型的例子如:一个或多个<fo:block>对象)
An XSL-FO list example:
一份XSL-FO列表的例子:
<fo:list-block> <fo:list-item> <fo:list-item-label> <fo:block>*</fo:block>
</fo:list-item-label> <fo:list-item-body> <fo:block>Volvo</fo:block> </fo:list-item-body> </fo:list-item> <fo:list-item>
<fo:list-item-label> <fo:block>*</fo:block> </fo:list-item-label> <fo:list-item-body> <fo:block>Saab</fo:block>
</fo:list-item-body> </fo:list-item> </fo:list-block> |
The output from this code would be:
这份代码应该输出如下结果: