How to export preprint as @article in BibTex?
I see that zotero has started importing arxiv articles as a new type (preprint, versus journal article), and that moreover these are exported as @misc in Bibtex (I am using Better Bibtex). Is there some way for me to revert to the old behavior and export them as @article in my Bibtex file? The Bibtex style files I work with (and I don't have control of these in all situations) do not treat @misc very well, and in particular do not show key fields from @misc entries in the eventual pdf. I see I could do this manually for one file at a time with tex.entrytype from Better BibTex, but I would like this to automatically happen for all preprints.
if (Translator.BetterBibTeX && zotero.itemType === 'preprint') {
tex.entrytype = 'article'
}
@misc
now as well, so if it should be@article
, we should fix that (and BBT should too, presumably).Here's the case for misc for preprints in plain bibtex: https://tex.stackexchange.com/a/251051
And here are the complex details for BibLaTeX: https://pbelmans.ncag.info/blog/2014/11/11/how-do-i-properly-cite-a-preprint-in-biblatex/