Export 'Extra' field as note in citation
Hello,
I'm using BBT and I'd like to export the data from the 'Extra' field to the corresponding 'note' field in the citation. Currently, it is exported to the annotation field I cannot use in my TeX environment.
Is there any way to change this behaviour?
I'm using BBT and I'd like to export the data from the 'Extra' field to the corresponding 'note' field in the citation. Currently, it is exported to the annotation field I cannot use in my TeX environment.
Is there any way to change this behaviour?
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Upgrade Storage
I'm pretty sure BBT has the ability to do this via a post-processing hook, yes,
if (Translator.BetterTeX && reference.has.annotation) reference.add({ ...reference.remove('annotation'), name: 'note'})if (Translator.BetterTeX) {reference.remove('note')
if (reference.has.annotation) reference.add({ ...reference.remove('annotation'), name: 'note'})
}
to make sure you're not getting rich-text notes in the
notefield.if (Translator.BetterTeX) reference.add({ ...reference.remove('annotation'), name: 'note'})