Harvard Reference format 7 (Author-Date) (de)

G'day ...

I'm using the "Harvard Reference format 7 (Author-Date) (de)"-Style
Now I want to use the Style as footnote

Thanks for your help
  • you need to be clearer about what exactly you want -
    do you want citations like
    Smith 1776
    in the footnote?
  • Hello adamsmith...

    I know exactly what I want...

    I want the "Harvard Reference format 7 (Author-Date) (de)"-Style >> please take a look under following link: http://www.zotero.org/styles
    perhaps it is better to say I need the format of this style (sorry for my english)

    but instead appearing in the text, citication should appear in the footnote
    >>> Hartmann et al 1999, S.4 <<< in the footnote
  • In der zweiten Zeile, ändere
    class="in-text"
    zu
    class="note"

    weiter unten, in dem <citation> Abschnitt finde
    <layout prefix="(" suffix=")" delimiter="; ">
    und ändere es zu
    <layout delimiter="; ">

    das sollte alles sein.
    Allgemeine Anleitung:
    http://www.zotero.org/support/csl_simple_edits
  • edited October 1, 2010
    Hallo adamsmith...

    danke für Deine Anweisungen... Habe nun die Änderungen durchgeführt und versuche nun die Datei als CSL zu speichern. Habe es auf meinem Apple mit TextWrangler und Textedit (wie in der Allgem.Anleitung beschrieben) probiert. Leider bekomme ich eine Fehlermeldung, wenn ich die Datei im FF öffnen möchte: file///....usw. scheint keine csl Datei zu sein.

    was mache ich falsch?

    O.k. ich habe es nun mit windows notepad gemacht. Dies hat geklappt... ich wurde gefragt ob ich installieren möchte.

    ABER im FF Fenster erscheint folgende Fehlermeldung:
    XML-Verarbeitungsfehler: nicht wohlgeformt
    Adresse: file:///Users/micheletarquinio/Desktop/Harvard_footnote.csl
    Zeile Nr. 91, Spalte 48:
    <text variable="title" prefix="[invalid character]" suffix="[invalid character]"/>
    -----------------------------------------------^

    was muss denn in der Zeile korrekterweise stehen?
  • edited October 1, 2010
    You have invalid characters in your file, likely because whatever text editor you used mangled the character set. Use a better text editor and/or make sure you save it as UTF-8.
  • Thank you Dan ....
    now it works perfect !!!

    great weekend for all and greetings from Germany
  • Hello again...

    2 more questions für this style.

    First, in the citication:
    I don't want to have a comma between AUTHOR NAME and YEAR like:
    (Hartmann, 2008: S. 711)

    Secound in the Bibliography:
    I want, that all authors names appear.
    And it should not appear doi or ISBN-Numbers.

    Thank you again for your help...
  • 1. Look for this
    <group delimiter=", ">
    <text macro="author-short"/>
    <text macro="year-date"/>
    </group>

    and take out the comma in the first line so that it reads

    <group delimiter=" ">

    2. (all authors)
    find this
    <option name="et-al-min" value="4"/>
    <option name="et-al-use-first" value="3"/>

    and change the numbers to something large like 99 and 98 (make sure the 2nd one is lower than the first)


    3. (ISBN) Remove the line
    <text macro="isbn" prefix=" — "/>

    4. (DOI) Find the macro "access"
    delete the first 5 lines, i.e.
    <choose>
    <if variable="DOI">
    <text variable="DOI" prefix="doi: "/>
    </if>
    <else>

    and the last two lines, i.e.
    </else>
    </choose>

    in the macro.
Sign In or Register to comment.