[EMAIL PROTECTED] wrote:
[INFO] area contents overflows area in line Data1:
[INFO] area contents overflows area in line Data2:
This is the relevant xsl:
...
- <fo:list-block font-size="12pt" font-weight="bold" line-height="16pt"
margin-left="8pt" margin-right="8pt" margin-bottom="8pt">
You didn't specify provisional-distance-between-starts and
provisional-label-separation, which means they are set to the
default. This means the available width for content of the
list item label is 18pt (or something of this order). The
error messages in turn indicate that "Data1:" already
overflows the line, further text is placed into the next line:
- <fo:block text-align="left">
Data1:
<xsl:value-of select="Data1" />
<fo:block />
Data2:
<xsl:value-of select="Data2" />
</fo:block>
What is happening in the pdf output is that carriage returns are being
inserted where they shouldn't be. I.e., instead of "one two three", I'm
getting
Where does the "one two three" come from?
This worked fine in fop-0.20.4. If anybody has any ideas on how to fix
this, I'd appreciate it.
0.20.4 had a bug in the label-end() calculation, it was always set to 0.
Fix the list specific properties mentioned above to get the proper width
for your label column, or use a table.
J.Pietschmann
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]