先说解决方法
打开->样式和格式->找到->正文->点击正文上的下拉列表->点击修改->弹出修改样式->去掉自动更新前面的勾
https://blog.csdn.net/heisetoufa/article/details/83452081
进阶版-一劳永逸
通过运行宏关闭自动更新样式
打开word,按alt+f11,粘贴上去,要用哪个就把鼠标点到哪个sub里,然后f5,运行即可!
https://www.cnblogs.com/erqie/p/3485225.html
'关闭样式自动更新
Sub CloseAutoUpdates()
Dim update As Style
Set Updates = ActiveDocument.Styles
For Each update In Updates
If update.Type = wdStyleTypeParagraph Then
update.AutomaticallyUpdate = False
End If
Next
End Sub
word中的宏代码截图: