Bibliography: Separate authors with / (incl. space) - also for last authro

edited June 14, 2022
Hi there.

I separate the authors in the bibliography by " / " (with space before/after), e.g.
Nolte, Roland / Kamburow, Christian/Rupp, Johannes (2011)...

However, the last author is always separated by "/" (without space, see above).

I already the changed the delimiter-precedes-last="always" but that does not solve the issue.

I have the following code for the author:


...
</macro>
<macro name="secondary-contributors">
<choose>
<if type="chapter paper-conference" match="none">
<names variable="editor translator" delimiter=", " prefix=" (" suffix=")">
<name and="text" initialize-with="." delimiter=", " delimiter-precedes-last="never"/>
<label form="short" prefix=", " text-case="capitalize-first"/>
</names>
</if>
</choose>
</macro>
<macro name="author">
<names variable="author">
<name and="text" name-as-sort-order="all" sort-separator=", " delimiter=" / " delimiter-precedes-last="never"/>
<label form="short" prefix=" (" suffix=")" text-case="capitalize-first"/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
<text macro="title"/>
</substitute>
</names>
</macro>
...


Can anyone support? Many thanks!
Sign In or Register to comment.