how to change color in zotero references in Word

I would like that when inserting the reference of zotero to be able to change its color for another, to help distinguish it
  • Do you mean just for your purposes while writing/editing or in the final document for readers?
  • In the final document for readers
  • Zotero can't do this but I think it might be possible to use a Word wildcard/special character search&replace to change the color of all Zotero citation (i.e. Word fields inserted by Zotero)
  • Thank you. I'll try
  • You can use macro to do this
    Function ZeterColor()
    For Each aField In ActiveDocument.Fields
    If InStr(aField.Code, "ADDIN ZOTERO_ITEM CSL_CITATION") > 0 Then
    aField.Select
    Selection.Style = ActiveDocument.Styles("CitationFormating")
    End If
    Next aField
    End Sub
Sign In or Register to comment.