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
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Upgrade Storage
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.