Solved Strange Word 2010 paragrph formatting behavior

GRoston

Member
Power User
VIP
Local time
9:22 PM
Messages
380
All,

While working on a document the other day (the original of which came from a colleague who uses a bibliographic management system), I stumbled across a very weird issue with paragraph formatting (see the attached file).

When you open the document, the paragraph looks just fine. Now, change the lines spacing from 'single' to 'exactly 12 pt' and observe what happens! The text 'disappears'. If you increase the value to ~60 pt, all of the text appears, but obviously, the spacing is silly.

The only solution I can up with was to copy and pasted (text only), then reformat appropriately. However, I would like to learn what setting is causing this weird behavior. Thanks for looking into this.
 

Attachments

My Computer My Computer

At a glance

Windows 7 x64 ProCore i7 860 @ 3.8 GHz16 GB F3-12800CL7D (DDR3 1600 7-7-7-24)Sapphire Vapor-X 100283VXL Radeon HD 5770
Computer type
PC/Desktop
OS
Windows 7 x64 Pro
CPU
Core i7 860 @ 3.8 GHz
Motherboard
MSI P55-GD80
Memory
16 GB F3-12800CL7D (DDR3 1600 7-7-7-24)
Graphics Card(s)
Sapphire Vapor-X 100283VXL Radeon HD 5770
Monitor(s) Displays
NEC LCD3090WQXi-BK
This paragraph has a setting, which is called CHARACTER SPACING:Font Alignment. And it is set to TOP.
It took me a while to find it out, because it is used in Asian typography normally for mixed asian+latin text and your text was latin only. I have Office 2013, but I guess this feature should be pretty much the same for Office 2010.

To fix the issue, you can simply apply Normal style to that paragraph.

If you are curious about actual settings in the menu, there are two options.
Easy one: Activate any Asian keyboard layout (Korean, Japanese, Chinese should work) in Control Panel.
Restart Word. Now if you right click that text - Paragraph, there will an Asian Typography tab and setting will be called Text alignment. Change it to Auto. If you do not have any Asian keyboard layouts, that tab is hidden.

More complicated option without activating extra layout: on the Office ribbon find a tile for Styles. Click on a little icon at its right bottom corner for more options. Styles task pane should pop up. Click style inspector button at the bottom. In Style Inspector click on Reveal Formatting. In Reveal Formatting pane go to subsection Paragraph to find a setting CHARACTER SPACING. Click on it, it will bring you to that hidden tab. Change Text alignment to Auto.

Voilà! Mystery solved.
 

My Computer My Computer

At a glance

Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Computer type
PC/Desktop
OS
Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Other Info
"The scale icon at the top right of a post or tutorial is how you can give rep to the member."
Neutron16,

Awesome answer! I had never before tried the Style Inspector, nor had I known about the hidden tab. Very cool! I assume there is some related trick for simply removing the Asian typography 'feature' from a document? I suspect these appear when sharing document with colleagues who are from the far east.
 

My Computer My Computer

At a glance

Windows 7 x64 ProCore i7 860 @ 3.8 GHz16 GB F3-12800CL7D (DDR3 1600 7-7-7-24)Sapphire Vapor-X 100283VXL Radeon HD 5770
Computer type
PC/Desktop
OS
Windows 7 x64 Pro
CPU
Core i7 860 @ 3.8 GHz
Motherboard
MSI P55-GD80
Memory
16 GB F3-12800CL7D (DDR3 1600 7-7-7-24)
Graphics Card(s)
Sapphire Vapor-X 100283VXL Radeon HD 5770
Monitor(s) Displays
NEC LCD3090WQXi-BK
GRoston, you are welcome!
Other than those 3 tricks I have mentioned, I can offer you a macro for your Normal.dot* template.
Code:
Sub Macro1()
'
' Macro1 Macro
'
'
    Selection.WholeStory
    With Selection.ParagraphFormat
        .BaseLineAlignment = wdBaselineAlignAuto
    End With
End Sub
You can assign a keyboard shortcut or button for its execution.

Another possibility would be to use separate macro-enabled Word file with this macro (to avoid editing Normal.dotx template).
 

My Computer My Computer

At a glance

Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Computer type
PC/Desktop
OS
Windows 8.1 ; Windows 7 x86 (Dec2008-Jan2013)
Other Info
"The scale icon at the top right of a post or tutorial is how you can give rep to the member."
Back
Top