如何通过使用引用第二个 word 文档的字段将图像包含在 word 文档中,而第二个 word 文档又具有引用图像的字段?

How to include Images in a word doc by using a field that references a second word doc that in turn has fields which reference the images?

我用两张图片举个例子。实际上,我必须多次执行此操作,每次都有数千张图像。

所以我的桌面上有两张图片,我打开一个 word 文件,然后使用如下字段插入这两张图片:

 { INCLUDEPICTURE "C:\Users\me\Desktop\image_a" }

{ INCLUDEPICTURE "C:\Users\me\Desktop\image_a" }

然后我将这个word文档保存为two_images_test.docx。在一个新文档中,我想创建一个路径为 two_images_test.docx 的字段,以便能够在这个新文档中显示两个图像。我认为这样做可以:

  { INCLUDEPICTURE "C:\Users\me\Desktop\two_images_test.docx" }

但是,唉,它不起作用,我收到一条错误消息,说无法显示链接的图像 bla bla bla...任何人都可以帮我解决这个问题吗?非常感谢!

要link将两个或多个Word文档放在一起,您应该使用INCLUDETEXT字段,而不是INCLUDEPICTURE字段。如果您想要 link 特定范围,请在源文档中为该范围添加书签并在 INCLUDETEXT 字段中指定书签。

有关 INCLUDETEXT 字段的更多信息,请参阅:https://support.microsoft.com/en-us/office/field-codes-includetext-field-1c34d6d6-0de3-4b5c-916a-2ff950fb629e

要将 INCLUDETEXT 字段和 INCLUDEPICTURE 字段与相对路径一起使用,请参阅:http://www.msofficeforums.com/word/38722-word-fields-relative-paths-external-files.html