Chicago style german
Dear all,
I have a issue and I cant solve it I'm already working on it since 2 days and still didn't come to a solution.
So if someone could help me with it please.
I need the Chicago citation style, but it should look like this
(Campbell 2001, S. 2) For 2 Authors (Campbell, Smith 2001, S.2)
and for 3 or more Authors
(Campbell et al. 2012, S. 5)
So please if someone could provide me the Zotero-Style or Know where I can get it
I have a issue and I cant solve it I'm already working on it since 2 days and still didn't come to a solution.
So if someone could help me with it please.
I need the Chicago citation style, but it should look like this
(Campbell 2001, S. 2) For 2 Authors (Campbell, Smith 2001, S.2)
and for 3 or more Authors
(Campbell et al. 2012, S. 5)
So please if someone could provide me the Zotero-Style or Know where I can get it
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
The rule comes from a Professor
I found a style which could fit, but it dosen't use a comma (,) for the seperation of the Authors and also the S. for the page is missing
I know it weird, but do you think that you can help me?
I'm also still not clear whether in the two days you spend on this you modified the style at all? I.e. what am I even starting with?
that the code is able to provide
following cition (in text)
I need the Chicago citation style, but it should look like this
(Campbell 2001, S. 2) For 2 Authors (Campbell, Smith 2001, S.2)
and for 3 or more Authors
(Campbell et al. 2012, S. 5)
https://gist.github.com/anonymous/92a9a6a07cbcd83e26b4
I solved the case for the 3 author issue, but I cant sove the problem for the comma. I want to have a comma (,) for two authors no (and)
and why it show me a (u. a) instead of et al
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" givenname-disambiguation-rule="primary-name">
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=" S. ">
<choose>
<if variable="issued accessed" match="any">
<group delimiter=" ">
<text macro="contributors-short"/>
<text macro="date-in-text"/>
</group>
</if>
<!---comma before forthcoming and n.d.-->
<else>
<group delimiter=", ">
<text macro="contributors-short"/>
<text macro="date-in-text"/>
</group>
</else>
</choose>
<text macro="point-locators"/>
</group>
</layout>
</citation>
<locale xml:lang="en">
<terms>
<term name="editor" form="verb-short">ed.</term>
<term name="container-author" form="verb">by</term>
<term name="translator" form="verb-short">trans.</term>
<term name="editortranslator" form="verb">
<single>edited and translated by</single>
<multiple>edited and translated by</multiple>
</term>
<term name="translator" form="short">trans.</term>
</terms>
</locale>
but it shows
u.a instead of et al.
2) The locale-part is not defining the language. I guess you want to use the style in German and therefore you would need something like
<locale xml:lang="de">
<terms>
<term name="et-al">et al.</term>
</terms>
</locale>