タグ付けされた質問 「bibliography」

0
Word 2013の書誌にハイパーリンクを含める
Wordで生成された参考文献にハイパーリンクを追加するのに苦労しています(word 2013を使用しています)。私は次の解決策を思いつきました(テキストのすべてのインスタンスを検索し、マクロを含むハイパーリンクにするためのレイスタファリアンの回答からいくつかのコードを借りました) 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 …

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.