Exporting and Importing from BibTeX: urldate/Accessed and note/Extra
When I export to BibTex from Zotero, the records in the .bib file include these fields:
- urldate, which is populated from Accessed
- note, which is populated from Extra
However, when I import from a .bib file, the urldate and note fields are not imported.
I have tried renaming them Accessed and Extra, and they still don't get imported into Zotero.
Is there any way to get these fields to import?
- urldate, which is populated from Accessed
- note, which is populated from Extra
However, when I import from a .bib file, the urldate and note fields are not imported.
I have tried renaming them Accessed and Extra, and they still don't get imported into Zotero.
Is there any way to get these fields to import?
Zotero exports the contents of accessed to urldate, but I cannot find a way to have data imported to the accessed field. I have tried:
urldate (because that is what Zotero is exporting to)
accessed (because that is a standard CSL variable)
accessDate (mentioned in the BBT documentation)
Which keyword in .bib can be imported into Zotero's "accessed date"?
Strange why Zotero cannot inherently get “urldate” into “accessed date” while it exports “accessed date” to “urldate” .
If there's a bug in the core BibTeX translators we'd obviously want to fix that. Just sending someone to BBT with no context when they report something here isn't ideal.
The issue is that no field from .bib can be imported into Zotero's "Accessed (accessed date)". I would think this should be an issue for Zotero's core translator, instead of relying on an extension (add-on) like BBT.
As Zotero already exports "accessed" to BibTeX's "urldate", which is widely used by most .bst, it is reasonable to use "urldate" as the keyword from .bib to be imported into "Accessed", unless there are other reasons not allowing to use "urldate".
Can we, as a user, to propose an issue for the core BibTeX translator of Zotero?
No field from .bib can be imported into Zotero's "Accessed (accessed date)".
And I recommend to use "urldate" as the keyword in .bib to be imported into Zotero's "Accessed (accessed date)".
Can we, as a user, propose an issue for the core BibTeX import translator of Zotero?
@article{r2,
author = {Brush, C},
title = {Herzinfarkt Symptome},
journal = {Family Business Review},
url = {http://www.netdoktor.de/},
year = {2011},
urldate = {29 November 2011},
volume = {29},
pages = {45-73},
language = {en},
}
@webpage{r42,
author = {Kelley, D},
title = {Global entrepreneurship},
url = {http://www.gemconsortium.org},
year = {2015},
urldate = {Feb. 3, 2016},
}
If you import those, the "Accessed" in Zotero is blank. The "urldate" data is just thrown away.
edit: looks like accessDate must be a valid SQL datetime. Same when entered through the UI.
edit: on a technical level this wouldn't be hard to address: it'd just be ZU.strToISO on the date
edit: upcoming version of BBT will parse the urldate to ISOdate or preserve it in the extra field it it can't.
Many BibTeX style .bst files use the keyword "urldate" from .bib, and will add strings like "Accessed: " before the "urldate" string, to form the final output in .pdf, such as "Accessed: Feb. 3, 2016", or in other textual format such as "29 November 2011" etc.
As few journals like the format of "Accessed 2016-02-03", most .bib are not using the format "2016-02-03" in "urldate".
So it is quite necessary to be able to accept normal textual date format in "urldate".