word标题中小黑块问题解决方法
相信很多人跟我一样,多次定义新的多级列表,会导致列表编号变成下面这样黑块
在百度搜索结果尝试了鼠标左键选中应用样式,文档关闭后打开问题依旧;
还是得感谢万能的Google,帮我找到了答案。
1 问题根因:
The problem occurs because the font characteristics in the list template have become corrupted.
大概意思就是模板中的字体损坏了,英文不好认不全囧。
2 解决步骤:
2.1 word-2013 视图->宏
2.2 创建宏
2.3 点击编辑宏,贴入代码:
For Each templ In ActiveDocument.ListTemplates
For Each lev In templ.ListLevels
lev.Font.Reset
Next lev
Next templ
2.4 运行宏
可以看到标题变回来了: