Edit Citation Gets Citations Mixed Up
Hi All,
First of all, I really appreciate this freeware. I would like to stick to zotero because I like the concept of firefox plus add-ons quite a bit. However, recently problems with zt are mounting unfortunately. I use Windows XP, Zotero 1.0.9, word 2002 and Firefox 3.0.6.
For one of the most annoying issues, I only found a thread from a year ago with no answer. So I figured I might post it again.
When I edit in-text Chicago Style citations in the document I am working on right now (has been revised quite some time) zotero often (it seems increasingly often) opens the wrong citation.
So I have to delete the original citation and replace it with a new one. This is certainly troublesome particularly with multiple citations.
Does anybody know a possible source of this mishap? Any fixes know?
Thanks a lot.
Chris
First of all, I really appreciate this freeware. I would like to stick to zotero because I like the concept of firefox plus add-ons quite a bit. However, recently problems with zt are mounting unfortunately. I use Windows XP, Zotero 1.0.9, word 2002 and Firefox 3.0.6.
For one of the most annoying issues, I only found a thread from a year ago with no answer. So I figured I might post it again.
When I edit in-text Chicago Style citations in the document I am working on right now (has been revised quite some time) zotero often (it seems increasingly often) opens the wrong citation.
So I have to delete the original citation and replace it with a new one. This is certainly troublesome particularly with multiple citations.
Does anybody know a possible source of this mishap? Any fixes know?
Thanks a lot.
Chris
sorry didn't check this for a few days.
No I have been working with the same database all the time. My Zotero Library has multiple collections though and I cite from different collections in one word file.
Cheers
same problem here.
I use Windows XP, Zotero 1.5 beta, Word 2007 and Firefox 3.0.7.
My impression is that in-text citation editing works fine until you add citations in the footnotes.
If I add a citation in the footnotes and then want to edit an in-text citation hitting the edit button brings up the "wrong" citation even if the cursor is on the in-text citation that I want to change. I noticed that it systematically brings up citations included in the footnotes.
This also happens on a newly open blank page and not only with the document I am working on (and revising) right now .
Any help much appreciated! Thanks a lot.
Daniele
A random test in my document supports Daniele's experience. The citations that come up in the editing mode are from the footnote in-text citations.
Environment: Ubuntu 8.10, Open Office 2.41, Firefox 3.0.10, Zotero 1.5b2
Given the following footnote (anything with more that three citations in a footnote will generate the problem): Edit citation appears to pick up the last entered citation (regardless of its location in the text stream). If I break the note up into separate paragraphs, about half the time, I can get Edit citation to pick up the selected citation if I select most of the text of the citation, though this does not always work (I'm editing existing text from about two months ago, so I'm not remembering anything special about failure cases). However, if I paste into an existing footnote with no citation or create a new empty footnote, I have no problem editing the content of the citation. It appears that the key and hash do not change in the field data.
Also, this is not effected by pagination breaks in the note.
The documents that I'm editing were created using zotero 1.0. I haven't tried with a clean zotero 1.5 document.
People care. I don't know the code of either the plugins or the interface to them in Zotero, but this sounds like it might (might) be related to an issue I've noted on this ticket in the tracker. Please give it some more time, I think (from one user to another).
The comment was more directed at people who are doing this professionally (if there are). ;)
(In a sense, we are all doing this professionally, since we have a professional interest in seeing that the project is a success.)
Thanks for your efforts.
After finishing the manuscript, endnotes can just be changed back to footnotes.
Chris's suggestion doesn't work for me.
Any thoughts on this bug?
groups.google.com/group/zotero-dev
My python knowledge is limited, but I think I have found the problem.
When the plugin isolates the openoffice field that you are trying to edit, it tries to find the beginning and end of that field. It does so by calling the following functions:
oRange1.gotoStartOfParagraph(True)
oRange2.gotoEndOfParagraph(True)
If there is more than one field in the footnote in question, that would select several.
All my zotero citations are in footnotes. Some footnotes have multiple citations (as wrknowles has described) of the form: "Blah blah blah. [Zotero field]. Blah blah blah blah. [Zotero field]." These footnotes give me problems because when I edit a citation Zotero correctly highlights the citation I want edited, but always pulls up the data for the last citation in the footnote.
If, however, I create a new paragraph in the footnote after the citation I want to edit, then place the cursor in that citation and click the "edit citation" button, it correctly edits that citation.
So I think the loop that gathers the data for editing the citation is looping to far. I poked around in the code and found where I think the problem might be (see my previous comment), but I don't know enough python/openoffice API to fix it.