Same Author Same/no Year but different source

Hallo! ich habe ein problem. Ich verstehe nicht was ich an meinem Code ändern muss, damit a b c nummerierung gemacht wird, wenn die quellen ununterscheidbar sind nur mit autor/jahr

so sollte beispielsweise nicht so sein:

SMP, Genossenschaft der Schweizer Milchproduzenten (o. J.). Ist Milch gesund? Swissmilk Verfügbar unter: https://www.swissmilk.ch/de/ernaehrung/essen-alltag/ist-milch-gesund/

SMP, Genossenschaft der Schweizer Milchproduzenten (o. J.). Swissness. Swissmilk Verfüg-bar unter: https://www.swissmilk.ch/de/shop/kategorien/lovely-s-artikel/swissness/

sondern es sollte so sein:

SMP, Genossenschaft der Schweizer Milchproduzenten (o. J.-a). Ist Milch gesund? Swissmilk Verfügbar unter: https://www.swissmilk.ch/de/ernaehrung/essen-alltag/ist-milch-gesund/
SMP, Genossenschaft der Schweizer Milchproduzenten (o. J.-b). Swissness. Swissmilk Verfüg-bar unter: https://www.swissmilk.ch/de/shop/kategorien/lovely-s-artikel/swissness/

und im text dann eben so:
(SMP, o.J.-a)
(SMP, o.J.-b)


Das ist mein aktueller Code:

<?xml version="1.0" encoding="utf-8"?>


Zitierstil Ethnologie APA7 (mit o. J. und a/b/c)
http://www.zotero.org/styles/zitierstil-ethnologie-apa7-base



ChatGPT angepasst für ethnologische Zitation



2025-04-13T00:00:00+00:00
de-DE APA 7th edition mit a/b/c-Suffix auch bei o. J., ausgeschriebene Namen, URL, ebd., kompakt












































































was muss ich ändern?
wäre froh um hilfe, ich verzweifle. weil das:



hab ich ja gemacht??

Danke für die Hilfe
Olivia
  • You need to put code in <code> </code> tags for it to display.

    I would not recommend trying to use ChatGPT with CSL code. It isn’t trained on it, so it won’t give any useful advice.

    See here for an example for including year suffixes with dates or text alternatives:


    <choose>
    <if variable="issued">
    <group delimiter=", ">
    <group>
    <date variable="issued" date-part="year"/>
    <text variable="year-suffix"/>
    </group>
    <choose>
    <if match="any" type="article-magazine article-newspaper broadcast collection document event interview motion_picture pamphlet performance personal_communication post post-weblog song speech webpage">
    <!-- Many video and audio examples in manual give full dates. Err on the side of too much information. -->
    <text macro="date-issued-month-day"/>
    </if>
    <else-if type="paper-conference">
    <!-- Capture `speech` stored as `paper-conference` -->
    <choose>
    <if match="none" variable="collection-editor compiler editor editorial-director issue page volume">
    <text macro="date-issued-month-day"/>
    </if>
    </choose>
    </else-if>
    <!-- Only year: article article-journal book chapter classic
    entry entry-dictionary entry-encyclopedia dataset figure graphic
    manuscript map musical_score paper-conference[published] patent
    periodical report review review-book software standard thesis -->
    </choose>
    </group>
    </if>
    <else-if variable="status">
    <group>
    <!-- Print the status variable rather than use generic CSL terms (`in press`, etc.) -->
    <text text-case="lowercase" variable="status"/>
    <text prefix="-" variable="year-suffix"/>
    </group>
    </else-if>
    <else>
    <text form="short" term="no date"/>
    <text prefix="-" variable="year-suffix"/>
    </else>
    </choose>
Sign In or Register to comment.