Dealing with the 'Extra' field
Hi, I am struggling with the 'extra' field.
I have to say that I am a novice about CSL but so far managed to modify the styles to suit my need. But now I am working with a style that pulls the information from the 'extra' field and I can not find it in my style to remove that. I don't want whatever is displayed in 'extra' to show up in my bibliography.
How can I remove this field from my style?
Thanks a lot for helping out a novice with this
I have to say that I am a novice about CSL but so far managed to modify the styles to suit my need. But now I am working with a style that pulls the information from the 'extra' field and I can not find it in my style to remove that. I don't want whatever is displayed in 'extra' to show up in my bibliography.
How can I remove this field from my style?
Thanks a lot for helping out a novice with this
The citation style should be coded to put the correct data in the citation, regardless of whether the data is in an actual field or in Extra. If something's not working, we want to know about it so it can be fixed properly.
key: value
(e.g.: publisher: SAGE) into the Extra field is passed on to citation styles as regular variables. There's no distinction between those variables and variables that come straight from Zotero fields (so no need to exclude them), so your only options are toa) remove them from Zotero or
b) exclude them from citation styles, along the lines of
<choose>
<if type="article-journal article-newspaper" match="none">
<text variable="publisher"/>
</if>
</choose>