'删除空行
ActiveDocument.Paragraphs.First.Range.Select
For i = 1 To ActiveDocument.Paragraphs.Count
Selection.MoveDown Unit:=wdParagraph, Count:=1
Selection.Paragraphs(1).Range.Select
If Selection.Words.Count < 2 Then
Selection.Delete Unit:=wdCharacter, Count:=1
End If
Next