Option to omit "et-al"
Is it possible within a Style to omit the "et-al" from the in-text citation for multiple author references?
For example I would like the citation to read -
(Townsend 2000)
instead of -
(Townsend et al 2000)
For example I would like the citation to read -
(Townsend 2000)
instead of -
(Townsend et al 2000)
Maybe Bruce can help.
<terms>
You might have to fix some spacing issues though.<locale xml:lang="en">
<term name="et-al"></term>
</locale>
</terms>
<terms>
<locale xml:lang="en">
<term name="and">et</term>
</locale>
</terms>
I would like this style to be the same whether the locale is en-US or fr-FR. In both cases (or better: whatever the locale is) I would like to get
- (Author1 et Author2) (and not "and" in en-US)
- Author1 et al. (and not “et coll” in fr-FR)
- In book1 (and not “Dans” in fr-FR)
I have define the default-locale as en-US at the beginning of the style but I don,t know the usefulness of this command
P.S. Of course! +1 for noksagt :)
<terms>
<locale xml:lang="en">
<term name="and">et</term>
</locale>
<locale xml:lang="fr">
<term name="et-al">et al</term>
<term name="in">in</term>
</locale>
</terms>