> > Hi,
> >
> > I'm trying to use FOP 0.93 and while using similar to this syntax:
> >
> > <fo:list-item-label end-indent="label-end()">
> > <fo:block>
> > <fo:inline font-family="Symbol">
> >     &#x2022;
> > </fo:inline>
> > </fo:block>
> > </fo:list-item-label>
> >
> > I get very low vertical alignment of that bullet symbol (actually
> > it's almost below baseline of following list item text). I've tried
> > to use display-align="before" (both for inline and block), but that
> > didn't help. Is there any other possibility?
> >
> 
> I don't think display-align will work. Try alignment-baseline="middle"
> or alignment-baseline="central" or try an explicit baseline-shift="..."
> 
> > Thanks in advance.
> > Andrejus
> >
> Manuel

I've tried this:

<fo:list-item-label end-indent="label-end()">
  <fo:block alignment-baseline="middle">
    <fo:inline font-family="Symbol" alignment-baseline="middle">
      &#x2022;
    </fo:inline>
  </fo:block>
</fo:list-item-label>

then this:

<fo:list-item-label end-indent="label-end()">
  <fo:block alignment-baseline="central">
    <fo:inline font-family="Symbol" alignment-baseline="central">
      &#x2022;
    </fo:inline>
  </fo:block>
</fo:list-item-label>

then this:

<fo:list-item-label end-indent="label-end()">
  <fo:block>
    <fo:inline font-family="Symbol" baseline-shift="super">
      &#x2022;
    </fo:inline>
  </fo:block>
</fo:list-item-label>

but my bullet symbol still stays at the same low vertical alignment
position.

The most interesting another fact for me - today's full checkout from trunk
and build over examples gets me wrong (i.e. very low vertical alignment)
bullets for list.pdf file and correct (at least in the vertical middle of
following text) for extensive.pdf. And I can't find what is the difference
in blocks properties.

Andrejus


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to