Hi,

The Symbol font is not a Unicode one:

In a Unicode font, you have 2 glyphes that can be used:
 - MICRO SIGN = U+00B (µ as XML entity) (the one got from keybord).
 - GREEK SMALL LETTER MU = U+03BC (μ as XML entity).

In Symbol font, the code for the corresponding glyph is 0x6d (Unicode
SMALL LETTER M).

You may, either:
 - use the 'm' letter with the Symbol font,
 - or (best practice) use a Unicode letter with a Unicode font.

for example:
<fo:wrapper font-family="Symbol">m</fo:wrapper>
<fo:wrapper font-family="DejaVu">µ</fo:wrapper><!-- equivalent to &#xb5;-->

2014-02-19 0:45 GMT+01:00 Jason Harrop <jhar...@gmail.com>:
> With this FOP config:
>
> <fop version="1.0">
>   <strict-configuration>true</strict-configuration>
>   <renderers>
>     <renderer mime="application/pdf">
>       <fonts>
>         <font embed-url="file:/C:/Windows/FONTS/symbol.ttf">
>           <font-triplet name="Symbol" style="normal" weight="normal"/>
>         </font>
>     :
>
> I'd like to render:
>
>           <inline font-family="Symbol">µ</inline>
>
> But FOP (1.1) says:
>
> WARN org.apache.fop.apps.FOUserAgent .processEvent line 94 - Glyph "µ"
> (0xb5, mu) not available in font "SymbolMT".
>
> Is it getting confused because symbol is a Base-14 font?
>
> thanks .. Jason
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
> For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org
>



-- 
pascal

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

Reply via email to