no p. (page) in word citation

Hey,
When using Zotero Word citation no abbrevation for page (p.) is created when I just type the page digits.
I use a slightly adapted Chicago 16th author-daten style.
How can I manipulate this?
Additionally I need ist in German (p.= S.). Is that somehow possible?
German is already set as language: <locale xml:lang="de">

Thanks a lot to all Zotero experts out there. You do a great job.

Cheers
Simon
  • edited June 12, 2015
    You'd set the language to German by adding default-locale="de-DE" to the first line of the style (the one starting with <style), though the Chicago Manual style will just default to German if you use a German Zotero version.

    To get S. before the page number for in-text citations, replace the macro point-locators with this version.

    <macro name="point-locators">
    <choose>
    <if variable="locator">
    <choose>
    <if type="bill book graphic legal_case legislation motion_picture report song" match="any">
    <choose>
    <if variable="volume">
    <group>
    <text term="volume" form="short" suffix=" "/>
    <number variable="volume" form="numeric"/>
    <label variable="locator" form="short" prefix=", " suffix=" "/>
    </group>
    </if>
    <else>
    <label variable="locator" form="short" suffix=" "/>
    </else>
    </choose>
    </if>
    <else>
    <label variable="locator" form="short" suffix=" "/>
    </else>
    </choose>
    <text variable="locator"/>
    </if>
    </choose>
    </macro>

    (the relevant part is the "label variable="locator" -- the style currently doesn't print that for pages, the above version removes that condition).
  • Hi Adam,
    I replaced the macro point-locators with your code.
    Unfortunately it doesn't work.
    Can you have a look at my style? It's available at this link
    https://owncloud.tu-berlin.de/public.php?service=files&t=bbb10b8dc9518783ca359a6a1f86d1fc

    Thanks a lot for your help
    Simon
  • could you put this on gist.github.com (no registration required) and link to it from here? I don't like downloading things if I can avoid it.
Sign In or Register to comment.