Questions tagged «bibliography»


0
包括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 …

1
引用的非英语数字
在Microsoft Word 2010中,当我使用insert citation从Citation & Bibliography窗格中,它总是插入英文数字。对于非英文文本,这不是很好。 我已设置Numeral为context,如果我在文本中输入一个数字,我会看到非英文数字。但是在引用的情况下,我总是看到英文数字。反正有没有解决这个问题?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.