Import fails, then generates duplicates
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
1834a1840,1843
> } else {
> // Even if exporting to UTF-8, we still need to translate some characters to
> // their BibTeX equivalent (e.g. quotes).
> value = value.replace(/[\u2018\u2019\u201C\u201D]/g, mapAccent);
This has, AFAIK, not been applied. Thus for the moment, exporting the following to bibtex does not work very well:
the folllowing entry,
@article{bouyssou_democracy_1992,
title = {Democracy and efficiency - A note on {\textquoteleft}{Arrow{\textquoteright}s} theorem is not a surprising result{\textquoteright}},
volume = {58},
journal = {European Journal of Operational Research},
author = {D. Bouyssou},
year = {1992},
pages = {427–430}
}
after import and export to bibtex, reads
@article{bouyssou_democracy_1992,
title = {Democracy and efficiency - A note on {‘Arrow’s} theorem is not a surprising result’},
volume = {58},
journal = {European Journal of Operational Research},
author = {D. Bouyssou},
year = {1992},
pages = {427–430}
}
This is a bit odd as the usual way to bibtex-encode quotes is to use {\textquoteleft} and the like. Moreover, (at least on my system) the resulting entry does not display the quotes after bibtex-ing and latex-ing.
Most probably that part of the patch should now be updated to reflect other changes that happened in the meantime. Does anyone know why this part has been omitted? Does it involves some problems I didn't expect?
Following your information that other softwares also use utf-8 in bibtex files, I guess this is the right behavior for zotero and my comment is therefore unuseful. Sorry and thanks for your reply.