PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Umgekehrte polnische Notation - Hilfe



cody
09-11-2007, 12:15
Hallo Leute!

Wie kann ich folgenden Code ändern, um nach 3 Autoren ein et. al. hinter den 3 Autoren anzuzeigen? Kenne mich mit der umgekehrten polnischen Notation leider nicht so gut aus.


FUNCTION {format.lab.names}
{ 's := % for two: (Jones/de~Bruijn)
s #1 "{vv~}{ll}" format.name$ % for three: (Jones/de~Bruijn/Smith)
s num.names$ duplicate$ % for more: (Jones et\,al.)
#2 <
'pop$ % for just one person
{ duplicate$ duplicate$
#99 > %Anzahl ab wann als Zitierung et alii angezeigt wird
swap$ s swap$ "{ff }{vv }{ll}{ jj}" format.name$ "others" =
or
{ pop$ "\Bibetal" * } % for 4 or more, or last is `others'
{ #2 =
{ "\jbbtasep " * s #2 "{vv~}{ll}" format.name$ * } % for (exactly) two
{ "\jbbfsasep " * s #2 "{vv~}{ll}" format.name$ * % for three
"\jbbstasep " * s #3 "{vv~}{ll}" format.name$ *
}
if$
}
if$
}
if$
year missing$
'skip$
{ "\jbdy {" year * "}" * * }% dummy year to prevent from `1993a' and `2001b' for works by the same author
if$
}

cody
09-11-2007, 17:13
Habe die Lösung selbst gefunden. Für Interessierte geht es hier (http://www.mrunix.de/forums/showthread.php?t=54931) entlang. :)