Chicago full note: Use colon before page number
Hi
I would like to use colon instead of comma before the page number at the end of the reference. Right now it's like "Author, Title, Page" (Hamre, Norges historie, 55). I want it to be "Author, Title: Page" (Hamre, Norges historie: 55).
How do I change the style to get it like this?
I would like to use colon instead of comma before the page number at the end of the reference. Right now it's like "Author, Title, Page" (Hamre, Norges historie, 55). I want it to be "Author, Title: Page" (Hamre, Norges historie: 55).
How do I change the style to get it like this?
for that, find
<else>
<group delimiter=", ">
<text macro="contributors-short"/>
<group delimiter=" ">
<group delimiter=", ">
<text macro="title-short"/>
<!--if title & author are the same: -->
<text macro="date-disambiguate"/>
<text macro="case-locator-subsequent"/>
</group>
<text macro="case-issue-subsequent"/>
</group>
<text macro="point-locators-subsequent"/>
</group>
</else>
and change to
<else>
<group delimiter=": ">
<group delimiter=", ">
<text macro="contributors-short"/>
<group delimiter=" ">
<group delimiter=", ">
<text macro="title-short"/>
<!--if title & author are the same: -->
<text macro="date-disambiguate"/>
<text macro="case-locator-subsequent"/>
</group>
<text macro="case-issue-subsequent"/>
</group>
</group>
<text macro="point-locators-subsequent"/>
</group>
</else>
general instructions are here:
https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
Thanks a lot, Adam!