Further, by trial and error I found that setting the Journal article fields as follows: Archive: arxiv Loc. in Archive: 1234.1231 Call number: hep-ph results in zotero exporting a biblatex file containing: eprinttype = {arxiv}, eprint = {1234.1231}, eprintclass = {hep-ph},
- TIP: SEE BibLATex.js translator:
- if (item.archive == "arXiv" || item.archive == "arxiv") {
}writeField("eprinttype", "arxiv"); writeField("eprint", item.archiveLocation); if (item.callNumber) { // assume call number is used for arxiv class writeField("eprintclass", item.callNumber); }