That has only to do with line breaking. See the example split_char.java
at itextpdf.sf.net. You'll need:

    public boolean isSplitCharacter(char c)
    {
        if (c <= ' ') {
            return true;
        }
        if (c < 0x2e80)
            return false;
        return ((c >= 0x2e80 && c < 0xd7a0)
        || (c >= 0xf900 && c < 0xfb00)
        || (c >= 0xfe30 && c < 0xfe50)
        || (c >= 0xff61 && c < 0xffa0));
    } 

Best Regards,
Paulo Soares

> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Adriaan Joubert
> Sent: Thursday, May 13, 2004 7:13 AM
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] Hyphenation and negative numbers
> 
> Hi,
> 
>       I have an urgent problem with hyphenation and negative 
> numbers. In the 
> reports I generate there are lots of numbers, and regularly lines get 
> broken so that the minus sign is left at the end of one line, and the 
> rest of the number is on the next. This can lead to dangerous 
> misinterpretation of the text, as the minus sign is seen as a dash.
> 
> Is there anything I can do to avoid the lines being broken like this? 
> I'm using the hyphenation package, but have the same effect 
> without it. 
> Of course this may have nothing to do with hyphenation, but only with 
> line breaks.
> 
> I'd really appreciate some help on this!
> 
> Adriaan
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by: SourceForge.net Broadband
> Sign-up now for SourceForge Broadband and get the fastest
> 6.0/768 connection for only $19.95/mo for the first 3 months!
> http://ads.osdn.com/?ad_id=2562&alloc_id=6184&op=click
> _______________________________________________
> iText-questions mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/itext-questions
> 
> 


-------------------------------------------------------
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id%62&alloc_ida84&op=click
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to