How to cite a Forward or Introduction by an author other than the book author?
Could someone please tell me how to cite the author of a forward in Zotero? (The person is different from the authors of the book.) I'm using MLA, and know how to do it by hand, but don't know how to ask Zotero to do it.
Anidjar, Gil. “Against History.” The Historiographic Perversion, by Marc Nichanian, translated by Anidjar, Columbia University Press, 2009.
The format I recieve in my bibliography while using Zotero is:
Anidjar, Gil. “Against History.” The Historiographic Perversion, translated by Gil Anidjar, Columbia University Press, 2009.
What about here? https://github.com/citation-style-language/styles/blob/23ce30582961e4145be7fd09c22ca66367986bee/modern-language-association.csl#L141
To get 141 right, we'd actually need significantly more complex logic that detects if at least one creator from the list in "other-contributors" gets rendered (taking into account the substitute on author). Happy to take PRs to that extent, but for an immediate fix I'd be happy with just the 95/101 fix.
container-author editor illustrator interviewer translator
Should any others be added (director is listed separately)? collection-editor?
The comprehensive way to finish 141 would be a sequence of else-ifs for each variable in other-contributors:
<else-if variable="container-author">
<choose>
<if variable="director editor illustrator interviewer translator" match="any">
</if>
</choose>
</else-if>
<else-if variable="director">
<choose>
<if variable="editor illustrator interviewer translator" match="any">
…
</if>
</choose>
</else-if>
…
If we wanted to simplify, could probably just do editor and illustrator/translator? But probably worth it to just finish out the whole list.
The relevant answer for @a.m.izadpanah is that this isn't currently working and we're looking at fixing it.