答案1
MS-Word 中有一个新页面功能。您可以在此处找到有关 Office 2003 的更多信息 http://office.microsoft.com/en-us/word-help/insert-a-manual-page-break-HP005189549.aspx 对于其他 Office 版本,请阅读以下链接:
如果您想了解 MS Office 文档结构,请查看此链接: http://office.microsoft.com/en-us/word-help/CH006082987.aspx
编辑:
使用此宏,如果您没有打开文档,它将引发错误:
Sub OpenMultipleFiles()
Dim fDialog As FileDialog
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
With fDialog
.AllowMultiSelect = True
.InitialView = msoFileDialogViewList
If .Show <> -1 Then
MsgBox "Cancelled By User", , "Cancelled"
Exit Sub
End If
End With
For i = 1 To fDialog.SelectedItems.Count
Selection.InsertFile fDialog.SelectedItems.Item(i)
Selection.InsertBreak Type:=wdPageBreak
Next i
End Sub
在 Word 中按 ALT+F11 即可调出 VBA 编辑器。然后展开 Normal 以查看 Modul 文件夹。如果不存在,请单击 Normal -> 插入 -> Modul 粘贴宏并保存。
之后,您可以将带有宏的按钮添加到工具栏。
答案2
据我所知,您无法在导入时自动执行此操作,但我知道有一种快速插入分页符的方法,即在每个新文档的第一个单词前按Ctrl
+ 。Enter