Zotero:按GB/T7714 2015引用参考文献

欢迎关注“ManTou馒头公众号”
原创不易,转载请注明出处
点赞收藏再走~


  1. 主要解决引用英文文献作者超过3个时出现 “,等” 而不是“etal”的问题

导入China National Standard GB/T 7714-2015 (numeric, Chinese) 引用格式

  1. edit -> Cite -> Get additional styles…
    搜索GB选择China National Standard GB/T 7714-2015 (numeric, Chinese)
    在这里插入图片描述
    在这里插入图片描述

  2. 编辑China National Standard GB/T 7714-2015 (numeric, Chinese)的格式
    相同界面点击 Style Editor
    在这里插入图片描述

  • GB/T 7714 2015应该是默认中文(中国大陆)且不可修改,如果不是的话,删去第二行代码
    default-locale="zh-CN"
    删去之后就可以修改默认语言了。
    在这里插入图片描述

在Word中添加宏

  • word主页面->视图->宏->自定义一个宏的名称(我这里是"deng2etal")->编辑

在这里插入图片描述

  • 把代码全部替换成下面的代码保存即可
    Sub deng2etal()

    ’ deng2etal macro
    ’ English等 -> english, et al

    With Selection.Find
    .Forward = True
    .ClearFormatting
    .Text = “(<[A-z]@, )等”
    With .Replacement
    .ClearFormatting
    .Text = “\1et al”
    End With
    .Wrap = wdFindStop
    .Execute Replace:=wdReplaceAll, MatchWildcards:=True
    End With
    End Sub

在这里插入图片描述

测试是否生效

  • Zotero添加参考文献,格式选用China National Standard GB/T 7714-2015 (numeric, Chinese)
    可以看到,这里是“,等”
    在这里插入图片描述
  • 运行宏
    视图->宏->选择“deng2etal”运行
    在这里插入图片描述
    OK!完美解决。
    另外对中文的参考文献没有冲突哦,放心使用~

版权声明:本文为qq_40678163原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。