Please
find fo codings of bulleted list.
A list is content divided into two
columns, called the label and the body. A list is created with the list-block
element. A list-block contains one or more list-item elements, each of which
contains exactly one list-item-label element and one list-item-body
element.
An example of a simple list is
this:
<fo:list-block margin-left='3cm'
margin-right='3cm' provisional-distance-between-starts='0.5cm'
provisional-label-separation='0.1cm'>
<fo:list-item>
<fo:list-item-label
start-indent="5mm"
end-indent='label-end()'>
<fo:block>
<fo:inline>•</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:block>
<fo:inline>•</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body
start-indent='body-start()'>
<fo:block>this is item one</fo:block>
</fo:list-item-body>
<fo:block>this is item one</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label
start-indent="5mm"
end-indent='label-end()'>
<fo:block>
<fo:inline>•</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:block>
<fo:inline>•</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body
start-indent='body-start()'>
<fo:block>this is item two</fo:block>
</fo:list-item-body>
<fo:block>this is item two</fo:block>
</fo:list-item-body>
</fo:list-item>
</fo:list-block>
Srinivasan
-----Original Message-----
From: Amita Rathore [mailto:[EMAIL PROTECTED]
Sent: Monday, July 26, 2004 6:41 PM
To: [EMAIL PROTECTED]
Subject: Bulleted list
What code can I use in xsl-fo to get a bullet similat to one generated by <li><ul> in html ?