Adding in-text citation page numbers to CSL Style
I wish to view pages numbers within in-text citations using the Elseliever Harvard Style (without titles). I need it to be this style in particular because it is the independent style on which a style I am using is based.
I have referred to the step by step guide to editing style and CSL specification on the zotero website, but cannot see any guidance on adding pages numbers to citations. Can anyone help with the code I need for this?
Thanks, Ricky
I have referred to the step by step guide to editing style and CSL specification on the zotero website, but cannot see any guidance on adding pages numbers to citations. Can anyone help with the code I need for this?
Thanks, Ricky
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued"/>
</group>
change to
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=": ">
<group delimiter=", ">
<text macro="author-short"/>
<text macro="issued"/>
</group>
<text variable="locator"/>
</group>
The delimiter in the first group determines how the page number is separated from the rest - this will give you
(Smith, 1776: 51)
change it according to your needs.
It's hard to guess what you'd like with no information ;)