包括Word 2013中参考书目的超链接
我正在努力在我的Word生成的参考书目中添加超链接(我使用word 2013)。我提出了以下解决方案(我从Raystafarian的回答中借用了一些代码来查找文本的所有实例并使其成为带宏的超链接) Sub Add_Hyperlinks_Bibliography() On Error Resume Next Set rngSearch = ActiveDocument.Range For I = 1 To ActiveDocument.Bibliography.Sources.Count strStyle = "Intensieve benadrukking" strSearch = ActiveDocument.Bibliography.Sources.Item(I).Field("URL") strAddress = strSearch With rngSearch.Find Do While .Execute(findText:=strSearch) = True With rngSearch 'we will work with what is found as it will be the selection …