ebd. bei gleicher Quelle

Hi,

ich nutze als Grundlage den American Psychological Zitierstil. Mein Problemchen ist, dass ich gerne wenn der gleiche Autor und die gleiche Seite zum zweiten, dritten (...) Mal zitiert werden nur noch mit ebd. zitiert wird. Im Moment schreibt Zotero zwar für die gleiche Quelle "ebd." aber setzt halt noch jedesmal die immer gleiche Seitenzahl dahinter - und das muss ja nicht sein.

Hier der "citation-Teil" meiner csl:

<citation>
<option name="et-al-min" value="6"/>
<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"/>
<option name="disambiguate-add-year-suffix" value="true"/>
<option name="disambiguate-add-names" value="true"/>
<option name="disambiguate-add-givenname" value="true"/>
<option name="collapse" value="year"/>
<sort>
<key macro="author"/>
<key macro="issued-year"/>
</sort>
<layout prefix="(" suffix=")" delimiter="; ">
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid" suffix="."/>
<text macro="citation-locator"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid" suffix="."/>
</else-if>
<else>
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued-year"/>
<text macro="citation-locator"/>
</group></else>
</choose>
</layout>
</citation>

Danke für Eure Hilfe
Christoph
  • Hey,

    I got the same problem here. Tried to modify your style but couldn't work it out.

    I try to integrate a full working ibid.-funktion into amarican psychological association 6th

    thanks for help
  • in principal this works correctly in Zotero /
    eigentlich funktioniert das richtig - wenn Du zweimal Seite 15 aus einem Buch zitierst, sollte beim zweiten Mal nur ebd. da stehen und nicht ebd. 15 - keine Ahnung was das Problem ist - kannst Du vielleicht etwas experimentieren?
  • edited November 1, 2010
    ibid. only works in some styles. To modify the APA style use this:

    use this:
    <citation>
    <option name="et-al-min" value="4"/>
    <option name="et-al-use-first" value="1"/>
    <option name="et-al-subsequent-min" value="6"/>
    <option name="et-al-subsequent-use-first" value="1"/>
    <option name="disambiguate-add-year-suffix" value="true"/>
    <option name="disambiguate-add-names" value="true"/>
    <option name="disambiguate-add-givenname" value="true"/>
    <option name="collapse" value="year-suffix"/>
    <layout prefix="(" suffix=")" delimiter="; ">

    <choose>
    <!-- "Ebd." (bei unmittelbar aufeinanderfolgenden Nachweisen) -->
    <if position="ibid-with-locator">
    <text term="ibid" text-case="lowercase" suffix="., "/>
    <text macro="citation-locator"/>
    </if>
    <else-if position="ibid">
    <text term="ibid" text-case="lowercase" suffix="., "/>
    <text variable="locator"/>
    </else-if>
    <!-- vollstaendiger Nachweis -->
    <else>
    <group delimiter=", ">
    <group delimiter="">
    <text macro="author-short" suffix=","/>
    <text macro="year-date"/>
    </group>
    <text macro="citation-locator"/>
    </group>

    </else>
    </choose>



    </layout>



    </citation>
Sign In or Register to comment.