Cannot convert footnotes to in-text citations
Hello,
I am using Zotero 3.0.1 with Mac integration (though I'm not sure of what version of that) with Word for Mac 2008. My document is in Chicago style with footnotes (full note) and I would like to change my citations to Chicago style (author-date) in-text. However, when I convert them they change from the footnote style: 1. B. Brubaker, βIn Haiti: the art of resilience,β Smithsonian, September 2010, 42β49.
to 1.(Brubaker 2010, 48), but it is still in the footnote and actually not "in-text" and the superscripted footnote numbers are still in the document as well. I tried changing it with different styles and changing it back and forth as you suggested above, but nothing seems to work. Any help you can give me would be much appreciated. Thank you.
I am using Zotero 3.0.1 with Mac integration (though I'm not sure of what version of that) with Word for Mac 2008. My document is in Chicago style with footnotes (full note) and I would like to change my citations to Chicago style (author-date) in-text. However, when I convert them they change from the footnote style: 1. B. Brubaker, βIn Haiti: the art of resilience,β Smithsonian, September 2010, 42β49.
to 1.(Brubaker 2010, 48), but it is still in the footnote and actually not "in-text" and the superscripted footnote numbers are still in the document as well. I tried changing it with different styles and changing it back and forth as you suggested above, but nothing seems to work. Any help you can give me would be much appreciated. Thank you.
This has happened on a longer document that I had submitted to multiple changes of citation style and much shifting around of chapters into and out of.
But it has now also happened to a smaller document.
Is Zotero unable to automate this process? It should be able to - logically.
FYI Zotero 4.0.21.5, MS Word 2010
I'm going back through earlier versions of this document to try to trace this point of breakage. A slightly earlier version, still in endnote style, gives the following error when trying to change to footnote style OR to in-text:
The requested member of the collectino does not exist. code: "0" function: "zoteroWinWordDocument::Convert" location: "zoteroWinWordDocument.cpp"'The requested member of the collectio ndoes not ext. code:"0" function: "zoteroWinWordDocument::Convert" location: "zoteroWinWordDocument.cpp"' when calling method: [zoteroWinWordIntegrationErrorHnadler::throwError]
Did you type the above error message or copy&paste it? I'm asking because there are typos in there that'd be odd coming from Zotero.
If you get that error message in trying to convert endnotes to footnotes with Zotero, I'm not sure there'll be an alternative to
https://www.zotero.org/support/word_processor_plugin_troubleshooting#debugging_broken_documents
but that certainly is not a general problem as you'll have seen in the other threads, where this consistently fixed the issue.
Either that or, as I said, the error msg may offer a clue? (The error message is not copiable on mac so I typed it.)
This is frustrating as it's very time-consuming to re-enter over 100 references - compared to a couple of clicks of a mouse.
And yes, of course I'm referring to footnote/endnote radio buttons in Set Doc Prefs, not in Word.
Sub FixAllFootnotes()
For Each FNOTE In Word.ActiveDocument.Footnotes
' just an uggly way to find number of footnotes
'now an ugly way to find the next footnote
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.text = "^f"
.Replacement.text = ""
.Forward = True
.Wrap = wdFindAsk
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
'and an ugly way to chuck that footnote into the text
Selection.Footnotes(1).Range.Copy
Selection.Collapse Direction:=wdCollapseStart
Selection.Paste
Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
Next
End Sub