具体问题如下:
出现这种情况就是word的自动编号字体出错,可以在word中运行脚本来解决:
Sub repair()
For Each templ In ActiveDocument.ListTemplates
For Each lev In templ.ListLevels
lev.Font.Reset
Next lev
Next templ
End Sub
代码如上,点击视图——宏——查看宏——编辑-----运行即可
具体问题如下:
出现这种情况就是word的自动编号字体出错,可以在word中运行脚本来解决:
Sub repair()
For Each templ In ActiveDocument.ListTemplates
For Each lev In templ.ListLevels
lev.Font.Reset
Next lev
Next templ
End Sub
代码如上,点击视图——宏——查看宏——编辑-----运行即可