1

我正在尝试将项目符号与正文垂直对齐。所以子弹应该在中间(垂直)。但我无法实现它。

<fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<xsl:call-template name="gbl-bullet-tick-circle"/>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block font-size="10pt">
 here is hell lot of text paragraph i want to print...
 here is hell lot of text paragraph i want to print...here is hell lot of text   
 paragraph i want to print...here is hell lot of text paragraph i want to print...
</fo:block>
</fo:list-item-body>
</fo:list-item>

它正在打印类似下面的内容

 .   here is hell lot of text paragraph i want to print...
     here is hell lot of text paragraph i want to print...here is hell lot of text   
     paragraph i want to print...here is hell lot of text paragraph i want to print...

但实际上我希望它打印如下

     here is hell lot of text paragraph i want to print...
 .   here is hell lot of text paragraph i want to print...here is hell lot of text   
     paragraph i want to print...here is hell lot of text paragraph i want to print...

以前有人在 XML:FO 中做过吗,请分享一些关于此的信息。

非常感谢您提前。

问候,莫娜

4

1 回答 1

1

快速回答是使用包含两列的表格。对项目符号使用 display-align。我可以为列表测试一些东西,但我不确定带有项目符号的块的进度维度可能不受列表主体的控制,我不确定。

我测试了,现在我确定了。如果在 list-item-label 上放置边框,您会看到块边界仅与 list-item-label 所需的一样大。

要完成此布局,请使用双列表,第一个单元格具有“display-align="center",您的项目符号和第二个单元格包含内容。

于 2013-08-27T15:43:22.467 回答