ASA style in OOo
For ASA style citations in OOo, if you cite a 3 or more authors paper twice, you get the following:
text1 (Author1 et al. 1999) and text2 (Author1, Author2, and Author3 1999) and so on.
According to ASA, it should be the other way round.
text1 (Author1 et al. 1999) and text2 (Author1, Author2, and Author3 1999) and so on.
According to ASA, it should be the other way round.
Also I noticed that the original problem (et al. in the first, full author list in subsequent citations) exists with American Political Sciences, but only for works with more than 3 authors. For works with three authors, all of them are listed throughout, while this should only happen in the first citation. In the reference list, multiple authors are not listed but replaced by et al.
(I couldn't find any dev version for this style)
ASA (dev) basically uses et al. for all citations with three or more authors. So you get:
(Devine et al. 1999) ... text ... (Devine et al. 1999) ... text ... (Devine et al. 1999)
What it should do (at least in my understanding of it):
three authors: list all authors the first time, use et al. thereafter, like:
(Devine, Plant, Harrison 1999) ... text ... (Devine et al. 1999) ... text ... (Devine et al. 1999)
Four or more authors: always use et al., like:
(Ferree et al. 2002) ... text ... (Ferree et al. 2002) ...
As for AmPolScAss (see http://dept.lamar.edu/polisci/DRURY/drury.html): It's the same rules for three authors and for more than three authors, that is: Use all names the first time you cite a publication, use et al. thereafter.
What you now get is:
(Ferree et al. 2002) ... text ... (Ferree, Gamson, Gerhards, and Rucht 2002)... text ... (Ferree, Gamson, Gerhards, and Rucht 2002)
So basically it currently inverts the rule.
What it should be is:
(Ferree, Gamson, Gerhards, and Rucht 2002) ... text ... (Ferree et al. 2002) ... text ... (Ferree et al. 2002) ...
Also: in the reference list at the end it uses et al. and doesn't list all authors. So what you now get is:
Ferree, Myra Marx et al. 2002. “Four models of the public sphere in modern democracies.” Theory and Society 31(3):289-324.
I think, it should be:
Ferree, Myra Marx, Wiliam Gamson, Jürgen Gerhards, and Dieter Rucht. 2002. "Four models of ...
Thanks for any help!
It solves the problem for three-author-citations, but there remain issues in the case of more than three authors (@bdarcus: I understand your question now). I think, in this case it should be et al. from the first time on you cite a publication. What I now get is
(Hopkins, McKie, Watson, et al. 2005) ... (Hopkins et al. 2005) ... (Hopkins et al. 2005) (It puts et al. instead of the fourth author, but it should be only et al.: Hopkins et al. 2005)
As for APSA, I should add to the above said, that right now it never uses et al. for three authors, but lists all of them each time, where it should equally fully list them first time, and use et al. thereafter. The et al. problem in the reference list at the end only occurs with 4+ author publications.
<citation>
<option name="et-al-min" value="3"/>
<option name="et-al-use-first" value="3"/>
<option name="et-al-subsequent-min" value="3"/>
<option name="et-al-subsequent-use-first" value="1"/>
I am assuming you want that second option set to a value of "1", but am not sure.
But as I've been trying to say: There are different rules for three-author-citations and for citations with four or more authors.
3 authors: (Devine, Plant, Harrison 1999) ... text ... (Devine et al. 1999) ... text ... (Devine et al. 1999) -- i.e. first time in the text list all authors, then et al.
4/more authors: (Ferree et al. 2002) ... text ... (Ferree et al. 2002) ... -- i.e. always et al.
I don't know how else I could explain this. Not knowing much about this I can only guess, that the code above perhaps needs some kind of if-clause to differentiate between these two cases, but I wouldn't know how to do this or if this is indeed a possible solution.
Setting the second option to 1 makes the style usable as the initial problem is solved, but this leaves the style somewhat incorrect in terms of the ASA specifications (unless I'm terribly misunderstanding them).
I very much appreciate the patience and help I am getting here. I wish I could do more than just giving user input, pointing out problems and creating work for others by demanding solutions. Maybe I'll become computer savvy enough one day to return these favors. As for now this is all I can do.
I can try to play with the values in the above mentioned code to fix the problem in APSA where there is no distinction between 3 and 4/+ author citations.
I just committed a change for asa that has this:
<option name="et-al-min" value="4"/>
<option name="et-al-use-first" value="1"/>
<option name="et-al-subsequent-min" value="3"/>
<option name="et-al-subsequent-use-first" value="1"/>
I think that might express what you're saying above; can you confirm?
Positive side-effect: you did get me interested in learning more about style programming...