Item type book requres `address' but there is no address field.
As per bibtex (https://www.bibtex.com/e/book-entry/), an address field is needed for a book item type. In my Zotero 6.0.19, there does not seem to be a field for an address, just for "place". I uploaded a screenshot here: https://imgur.com/a/v2Vut5N
Extra fields seem to only work with CSL variables, so no address (the export does not work for me at least). Not sure what to do.
Extra fields seem to only work with CSL variables, so no address (the export does not work for me at least). Not sure what to do.
Upgrade Storage
if (Translator.BetterBibLaTeX) {
if (tex.entrytype === 'book' && tex.has.place){
tex.add({ name: 'address', value: zotero.place});
}
}
which just replaces the place with address when exporting. But upon changing the exporter, it works out of the box, like Adam prophesied.
addressyou should export as bibtex, not biblatex. Better BibTeX will exportaddresswithout any postscript. Better BibLaTeX exports it tovenueorlocation.The standard Zotero BibLaTeX exporter also does not export
address, the Zotero BibTeX exporter does. I think you're just getting the two mixed up.tex.has.placecould ever be true-ish.