From http://www.w3schools.com (Copyright Refsnes Data)

XSL-FO list-item-label Object

Back

Definition and Usage

The <fo:list-item-label> object contains the label for the list-item - typically an <fo:block> containing a number, character, etc..

There are four XSL-FO objects used to create lists:


Syntax

<fo:list-item-label>
  <!--
	Contents:(block|block-container|
	table-and-caption|table|list-block|
	list-item)+
  -->
</fo:list-item-label>

Properties

Property
id
keep-together
role
source-document

Example 1

An XSL-FO list example:

<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:


 * Volvo
 * Saab
 


Back

From http://www.w3schools.com (Copyright Refsnes Data)