brackets around "and others" but in bibliography only
This is I guess a csl question. I'm trying to set up a style that uses "and others" in citations, and "[and others]" (in square brackets) in the bibliography. There are different rules for number of authors to trigger the text, but that's not the problem. How do I specify the brackets for the full references?
For citations, I have the following: (uhh, guess I can't post csl code)
. . .
For bibliography, I have:
. . .
In the macros, I have, for example:
. . .
. . .
. . .
Where/how do I put instructions for brackets in bibliography only? Adding it to the author's et-al element, either as part of the term text or as prefix/suffix, do not work.
For citations, I have the following: (uhh, guess I can't post csl code)
<citation et-al-min="3" et-al-use-first="1" name-as-sort-order="all" disambiguate-add-year-suffix="true" collapse="year">
<layout prefix="(" suffix=")" delimiter="; ">
<group>
<text macro="author-short"/>
. . .
For bibliography, I have:
<bibliography et-al-min="5" et-al-use-first="3" hanging-indent="false">
<layout>
<group font-style="normal" font-variant="normal" font-weight="bold" text-decoration="none">
<text macro="author"/>
. . .
In the macros, I have, for example:
<macro name="author-short">
. . .
<names variable="author">
<name form="short" and="text" delimiter-precedes-last="never" initialize-with=". " name-as-sort-order="all"/>
<et-al term="and others"/>
. . .
<macro name="author">
. . .
<names variable="author">
<name delimiter="; " initialize-with="." name-as-sort-order="all"/>
<label form="short" prefix=" " strip-periods="false"/>
<et-al term="and others"/>
. . .
Where/how do I put instructions for brackets in bibliography only? Adding it to the author's et-al element, either as part of the term text or as prefix/suffix, do not work.
The locale section looks like this:
<locale>
<terms>
<term name="et-al"> [and others]</term>
</terms>
</locale>
In author/editor macros where the plain "and others" should appear, under the names - name elements, I put
<et-al term="and others"/>
.In the full author macro, I didn't put that, so the default et al., which is 'translated' to " [and others]", is used. At least, I think that's how it is working.