Cell Journal (AY) citation format and author suppression
To whom it may concern,
When using using Cell-style citation format, inserting a citation in conjunction with "Suppress Author Names" delivers "( YYYY)", rather than "(YYYY)" - a whitespace is falsely being used.
How might I remedy that?
Thanks, Joh
When using using Cell-style citation format, inserting a citation in conjunction with "Suppress Author Names" delivers "( YYYY)", rather than "(YYYY)" - a whitespace is falsely being used.
How might I remedy that?
Thanks, Joh
The problem is with this bit of code:
<layout prefix="(" suffix=")" delimiter="; ">
<text macro="author-short"/>
<text macro="issued" prefix=", "/>
</layout>
It should be like this instead:
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued"/>
</group>
</layout>
That is, the ", " should be set as a group delimiter, not as a prefix to the year of publication. When that change is made, the style works correctly.