SBL style error
SBL citation style produces footnotes with editor and translator information like this (ignore missing italics):
Walther Zimmerli, Ezekiel: A Commentary on the Book of the Prophet Ezekiel (ed by. Paul D. Hanson and Leonard Jay Greenspoon; trans by. James D. Martin; Minneapolis: Fortress Press, 1983), 1:124
Note "ed by. ..." and "trans by. ...".
Is someone able to fix this and update the style?
Thanks!
Walther Zimmerli, Ezekiel: A Commentary on the Book of the Prophet Ezekiel (ed by. Paul D. Hanson and Leonard Jay Greenspoon; trans by. James D. Martin; Minneapolis: Fortress Press, 1983), 1:124
Note "ed by. ..." and "trans by. ...".
Is someone able to fix this and update the style?
Thanks!
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.
"(ed. Paul D. Hanson...)" and the same for translator.
Thanks so much!
container-contributors-node
macro, at lines 85-94:<macro name="container-contributors-note">
<choose>
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
<names variable="editor translator container-author" delimiter=", ">
<label form="verb-short" suffix=" "/>
<name and="text" delimiter=", "/>
</names>
</if>
</choose>
</macro>
Editor and translator will collapse only if exactly
editor
andtranslator
are called viacs:names
—at least that is my reading of the relevant portion of the CSL Specification. In this case, there is a third variable in the call,container-author
. That's a valid CSL variable (although not linked to any Zotero variable as far as I know), but as a third variable in the call, it will break the editor-translator collapse.If this worked before, that would have been a bug that was somehow being masked. Removing
container-author
should restore collapsing. If you need to call thecontainer-author
variable, it should be called in a separatecs:names
element.