I'm having trouble with font spacing in Arial Unicode IPA characters.
E.g. if I type (or insert from the symbol char) a row of n's, I get
normal font spacing. But, if I insert a row of IPA eng (char number
014B), they appear with large spaces between them. This happens for
many of the IPA characters.
The only way round it I've found so far is to manually alter the
character spacing for the affected characters - a pain, of course, and
then if I later change the font size the spacing is wrong again.
Since no-one else has mentioned this problem in discussions about this
font, am I missing something obvious? There must be a better solution
than manually altering the spacing for individual characters.
Susan Fitt
Edinburgh
Forgot to say I'm using Word 2000.
Susan Fitt
I had the problem once, and it went away after I reinstalled the font from the
Office CD.
The version I had problems with was downloaded from the microsoft website, but
it might have become corrupted later.
Greetings, Klaus
Klaus
Thanks for the suggestions. The font doesn't seem to be on my Office CD
(Office 2000 Standard). (I think I got my copy of the font from the
microsoft website.) The Balance SBCS characters seems to have no
effect. I've been hunting around for other places to get the font
without any success. Do you know of anywhere?
Susan Fitt
Edinburgh
The Arial MS Unicode font is available for
installation as part of Office 2000.
If you go Add/Remove Programs in the
Windows Control Panel, double click
on Office 2000, and use Add/Remove Features
add the 'Universal Font' under Internationl
Features from the Office Shared Features
area (although you may need to remove the old
one first if it doesn't change things).
==========
<<"Susan Fitt" <s...@cstr.ed.ac.uk> wrote in message news:3BD006E9...@cstr.ed.ac.uk...
Hi Klaus,
Thanks for the suggestions. The font doesn't seem to be on my Office CD
(Office 2000 Standard). (I think I got my copy of the font from the
microsoft website.) The Balance SBCS characters seems to have no
effect. I've been hunting around for other places to get the font
without any success. Do you know of anywhere?
Susan Fitt
Edinburgh>>
--
Hope that helps,
Bob Buckland ?:-) MS Office Products family MVP
http://forums.compuserve.com/gvforums/default.asp?SRV=MSOfficeForum
*Courtesy is not expensive and can pay big dividends*
Tom
MSMVP PS-D
"Susan Fitt" <s...@cstr.ed.ac.uk> wrote in message
news:3BD006E9...@cstr.ed.ac.uk...
: Hi Klaus,
The compatibility setting "Use Word 97 line breaking rules for Asian text" can
also have this effect.
Try if resetting all the compatibility options to the defaults for Word2000 helps.
In the documents I got with wrong "Arial Unicode MS" spacing, there also were
lots of funny settings in the style definitions. Since I use a german version,
I can only try to roughly translate them: "No punctuation outside of text
area, No automatic spacing between far east and western characters, No
automatic spacing between far east characters and digits, Alignment baseline".
The following macro got rid of these settings:
Sub FixStyles()
Dim myStyle as Style
For each myStyle in ActiveDocument.Styles
If myStyle.InUse=True Then
If myStyle.Type=wdStyleTypeParagraph Then
myStyle.ParagraphFormat.AddSpaceBetweenFarEastAndAlpha = True
myStyle.ParagraphFormat.AddSpaceBetweenFarEastAndDigit = True
myStyle.ParagraphFormat.BaseLineAlignment = wdBaseAlignAuto
myStyle.ParagraphFormat.HangingPunctuation = True
End If
End If
Next myStyle
End Sub
I guess all this was caused by some exotic language support in Word97 on the
author's machine.
Regards, Klaus
Thanks for the suggestions. I tried them all out, including
reinstalling the font and changing Word 2000 style settings, but with no
luck. Meanwhile, I have found a way of fixing the problem, which is
rather inconvenient but better than spending still more time trying to
fix it properly:
1. Insert the required IPA character(s) into Word 2000
2. Copy them via the clipboard to Powerpoint, where they display
correctly. (For some reason they don't appear in the Powerpoint
drop-down menu though).
3. Select them in Powerpoint and copy to clipboard.
4. Paste back into word, and reapplying the right font and point size
if necessary.
Voila, spacing correct.
Strange but true...
Susan Fitt
Tom
MSMVP PS-D
"Susan Fitt" <s...@cstr.ed.ac.uk> wrote in message
news:3BD40090...@cstr.ed.ac.uk...
: Hi again all,
Do you know if it's a bug in Word, or in Arial Unicode MS? I always had the
problem only with this font.
If anyone else runs into that bug (and setting the compatibility options to
"Recommended options for: Microsoft Word 2000" doesn't help, as it does for
me), using another big Unicode font (like Lucida Sans Unicode) might do the trick.
Greetings, Klaus
Tom
"Klaus Linke" <fotosatz...@t-online.de> wrote in message
news:ux4MODkXBHA.1400@tkmsftngp03...
: Hi Thomas,