当前位置: 首页 > news >正文

做网站工作量怎么算外贸汽车配件做那个网站

做网站工作量怎么算,外贸汽车配件做那个网站,小程序代理哪家好,南昌做小程序公司第一步:准备好Zotero Word 确认你已经完成以下准备: ✅ 已安装好 Zotero ✅ 已安装好 Zotero Word 插件(一般自动装好了) ✅ Word 可以正常插入参考文献 ✅ 已插入好一组参考文献(可以先插几个测试) …

第一步:准备好Zotero + Word

确认你已经完成以下准备:

  • ✅ 已安装好 Zotero

  • ✅ 已安装好 Zotero Word 插件(一般自动装好了)

  • ✅ Word 可以正常插入参考文献

  • ✅ 已插入好一组参考文献(可以先插几个测试)


第二步:创建宏,粘贴代码

1. 打开你的 Word 文档。

2. 点击视图,查看宏,然后创建宏。


第三步:保存、关闭Word

  • 将代码复制到命令行,按Ctrl+S键保存内容,然后将文件名重命名为ZotreoLinkCitation
Public Sub ZoteroLinkCitation()' get selected area (if applicable)Dim nStart&, nEnd&nStart = Selection.StartnEnd = Selection.End' toggle screen updatingApplication.ScreenUpdating = False' define variablesDim title As StringDim titleAnchor As StringDim style As StringDim fieldCode As StringDim numOrYear As StringDim pos&, n1&, n2&, n3&ActiveWindow.View.ShowFieldCodes = TrueSelection.Find.ClearFormatting' find the Zotero bibliographyWith Selection.Find.Text = "^d ADDIN ZOTERO_BIBL".Replacement.Text = "".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.Execute' add bookmark for the Zotero bibliographyWith ActiveDocument.Bookmarks.Add Range:=Selection.Range, Name:="Zotero_Bibliography".DefaultSorting = wdSortByName.ShowHidden = TrueEnd With' loop through each field in the documentFor Each aField In ActiveDocument.Fields' check if the field is a Zotero in-text reference'##################################################If InStr(aField.Code, "ADDIN ZOTERO_ITEM") > 0 ThenfieldCode = aField.Code'#############' Prepare' Plain citation== Format of Textfield shown' must be in BracketsDim plain_Cit As StringplCitStrBeg = """plainCitation"":""["plCitStrEnd = "]"""n1 = InStr(fieldCode, plCitStrBeg)n1 = n1 + Len(plCitStrBeg)n2 = InStr(Mid(fieldCode, n1, Len(fieldCode) - n1), plCitStrEnd) - 1 + n1plain_Cit = Mid$(fieldCode, n1 - 1, n2 - n1 + 2)'Reference 'as shown' in word as a string'Title array in fieldCode (all referenced Titles within this field)Dim array_RefTitle(32) As Stringi = 0Do While InStr(fieldCode, """title"":""") > 0n1 = InStr(fieldCode, """title"":""") + Len("""title"":""")n2 = InStr(Mid(fieldCode, n1, Len(fieldCode) - n1), """,""") - 1 + n1If n2 < n1 Then 'Exception the type 'Article'n2 = InStr(Mid(fieldCode, n1, Len(fieldCode) - n1), "}") - 1 + n1 - 1End Ifarray_RefTitle(i) = Mid(fieldCode, n1, n2 - n1)fieldCode = Mid(fieldCode, n2 + 1, Len(fieldCode) - n2 - 1)i = i + 1LoopTitles_in_Cit = i'Number array with References shown in PlainCit'Numer is equal or less than Titels, depending on the type'[3], [8]-[10]; [2]-[4]; [2], [4], [5]' All citations have to be in Brackets each! [3], [8] not [3, 8]' This doesnt work otherwise!' --> treatment of other delimiters could be implemented hereDim RefNumber(32) As Stringi = 0Do While (InStr(plain_Cit, "]") Or InStr(plain_Cit, "[")) > 0n1 = InStr(plain_Cit, "[")n2 = InStr(plain_Cit, "]")RefNumber(i) = Mid(plain_Cit, n1 + 1, n2 - (n1 + 1))plain_Cit = Mid(plain_Cit, n2 + 1, Len(plain_Cit) - (n2 + 1) + 1)i = i + 1LoopRefs_in_Cit = i'treat only the shown references (skip the rest)'[3], [8]-[10] --> skip [9]'Order of titles given from fieldcode, not checked!If Titles_in_Cit > Refs_in_Cit Thenarray_RefTitle(Refs_in_Cit - 1) = array_RefTitle(Titles_in_Cit - 1)i = 1Do While Refs_in_Cit + i <= Titles_in_Citarray_RefTitle(Refs_in_Cit + i - 1) = ""i = i + 1LoopEnd If'#############'Make the linksFor Refs = 0 To Refs_in_Cit - 1 Step 1title = array_RefTitle(Refs)array_RefTitle(Refs) = ""' make title a valid bookmark nametitleAnchor = titletitleAnchor = MakeValidBMName(titleAnchor)ActiveWindow.View.ShowFieldCodes = FalseSelection.GoTo What:=wdGoToBookmark, Name:="Zotero_Bibliography"'' locate the corresponding reference in the bibliography'' by searching for its titleSelection.Find.ClearFormattingWith Selection.Find.Text = Left(title, 255).Replacement.Text = "".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.Execute' select the whole caption (for mouseover tooltip)Selection.MoveStartUntil ("["), Count:=wdBackwardSelection.MoveEndUntil (vbBack)lnkcap = "[" & Selection.Textlnkcap = Left(lnkcap, 70)' add bookmark for the reference within the bibliographySelection.ShrinkWith ActiveDocument.Bookmarks.Add Range:=Selection.Range, Name:=titleAnchor.DefaultSorting = wdSortByName.ShowHidden = TrueEnd With' jump back to the fieldaField.Select' find and select the numeric part of the field which will become the hyperlinkSelection.Find.ClearFormattingWith Selection.Find.Text = RefNumber(Refs).Replacement.Text = "".Forward = True.Wrap = wdFindContinue.Format = False.MatchCase = False.MatchWholeWord = False.MatchWildcards = False.MatchSoundsLike = False.MatchAllWordForms = FalseEnd WithSelection.Find.ExecutenumOrYear = Selection.Range.Text & ""' store current stylestyle = Selection.style' Generate the Hyperlink -->Forward!ActiveDocument.Hyperlinks.Add Anchor:=Selection.Range, Address:="", SubAddress:=titleAnchor, ScreenTip:=lnkcap, TextToDisplay:="" & numOrYear' reset the styleSelection.style = style' comment if you want standard link styleaField.SelectWith Selection.Font.Underline = wdUnderlineNone.ColorIndex = wdBlackEnd WithNext Refs 'References in CitEnd If  'If Zotero-Field'#########################Next aField ' next field' go back to original range selectedActiveWindow.View.ShowFieldCodes = FalseActiveDocument.Range(nStart, nEnd).SelectEnd SubFunction MakeValidBMName(strIn As String)Dim pFirstChr As StringDim i As LongDim tempStr As StringstrIn = Trim(strIn)pFirstChr = Left(strIn, 1)If Not pFirstChr Like "[A-Za-z]" ThenstrIn = "A_" & strInEnd IfFor i = 1 To Len(strIn)Select Case Asc(Mid$(strIn, i, 1))Case 49 To 57, 65 To 90, 97 To 122tempStr = tempStr & Mid$(strIn, i, 1)Case ElsetempStr = tempStr & "_"End SelectNext itempStr = Replace(tempStr, "  ", " ")MakeValidBMName = Left(tempStr, 40)End Function

  • 回到 Word 文档,保存文档关闭 Word

  • 这一步是为了让宏生效,别跳过!


第四步:重新打开 Word,运行宏

  1. 打开你的 Word 文档。

  2. 然后重新打开word后查看宏,找到ZotreoLinkCitation,然后点击运行

✅ 你会看到:参考文献中的 URL 已经变成了可以点击的超链接啦!


🧼 小贴士

  • 如果你参考文献没有包含 URL 或 DOI,这个方法就找不到可以链接的地址。建议用 Zotero 插入样式时选择带 URL 的样式,比如 APA。

  • Word 可能会警告你启用宏,请点击“启用内容” 才能运行!

http://www.dtcms.com/a/559800.html

相关文章:

  • 海外网站seo线上网络推广培训
  • 南通通州区城乡建设局网站网站自助建设
  • 简历制作免费模板网站软件专业
  • 搞笑网站全站源码谷歌搜索排名
  • 网站设计需要用到什么技术网站开发深圳
  • 网站建设+设计那种连接线厂家环保主题静态网站模板下载
  • 最新创建的网站培训网站系统建设方案
  • 网站开发公司能否挣钱简单的网站建立一般多少钱
  • 广饶网站建设晋中网络推广
  • 湛江制作网站公司PHP调用wordpress数据库ID
  • 唐山如何做百度的网站天猫设计师服务平台
  • 怀远做网站电话做网站你给推广
  • 清河网站建设多少钱广东建设工程信息网官网证书查询
  • seo的优点seo招聘的关键词
  • 学历教育网站建设客户端
  • 网站开发技术项目it外包风险
  • 最强的管理咨询公司东莞网站seo优化托管
  • 怎么建设两个大淘客网站网站设计鉴赏
  • x网站免费咨询网络服务商怎么弄
  • 无锡建设建设局网站wordpress文章和页面
  • python做的网站哪些株洲公司做网站
  • 网页网站免费哪个网站推广产品好
  • 营销型平台网站建设wordpress子主题制作
  • 做如美团式网站要多少钱聊城网站建设电话
  • 比较有名的个人网站抖音代运营服务商
  • 怎么做移动网站南京专业网站设计公司
  • 环艺做网站免费域名领取
  • 嘉兴服饰网站建设免费域名注册网站怎么登录
  • 手机网站微信登陆百度h5收费吗
  • 获取网站访客qq号电脑如何下载网页视频文件