FOP Newsgroup (@Basebeans.com) wrote:
The fo:list-block has the attributes start-indent and end-indent on the
list-item-label and list-item-body so is there any way to specify the amount
of indent dependant on an attribute.
You are generating the FO with XSLT?
Try something like
<fo:list-block start-indent="{$scale-factor
* string-length(listid)}">
...
Make every line it's own list block rather than a
single list block with multiple fo:list-item elements.
Though the latter should be possible too if you use the
indent both as start-indent of the fo:list-item-label
as well as adding it to the start-indent of the
list-item-body.
J.Pietschmann