On Aug 30, 2008, at 12:52, Ryan Lortie wrote:

Hi

I have a FO document that contains some symbols like ∀. Nothing that's
not covered by a font in the Base-14 (like Symbol).

When I send this document through FOP to generate PDF output I get the
'#' characters showing up, accompanied by the following output:
<snip />

Can you show us the FO? How exactly are you inserting the character?

Something like

<fo:block font-family="Symbol">&#x2200;</fo:block>

works nicely on my end.

As for the warning messages:


30-Aug-2008 6:45:31 AM org.apache.fop.fonts.FontInfo
notifyFontReplacement
WARNING: Font 'Symbol,normal,700' not found. Substituting with
'Symbol,normal,400'.
30-Aug-2008 6:45:31 AM org.apache.fop.fonts.FontInfo
notifyFontReplacement
WARNING: Font 'ZapfDingbats,normal,700' not found. Substituting with
'ZapfDingbats,normal,400'.

These are simply indications that you have specified font-family 'Symbol' or 'ZapfDingbats' in combination with (most likely inherited) font-weight 'bold'. You can safely ignore these, or otherwise, override the font-weight to 'normal' on the related blocks/ inlines, if you want to avoid them altogether.

30-Aug-2008 6:45:31 AM org.apache.fop.hyphenation.Hyphenator
getHyphenationTree
SEVERE: Couldn't find hyphenation pattern en

This indicates you have no hyphenation pattern file that is reachable at runtime. See http://xmlgraphics.apache.org/fop/0.95/hyphenation.html#install for a variety of mechanisms to make them available to FOP.

None of the messages are related to the reported problem, though...

Cheers

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

Reply via email to