Bibliography - how to replace the comma with a colon

I am using the Cite Them Right 10th Edition - Harvard style, and I need to make a slight amendment in the bibliography.

For journal articles I need to remove the 'pp.', and replace the comma following the volume(issue) with a colon, so that the existing this . . .

Barter, C. (2007) ‘In the Name of Love: Partner Abuse and Violence in Teenage Relationships’, British Journal of Social Work, 39(2), pp. 211–233.

looks like this . . . .

Barter, C. (2007) ‘In the Name of Love: Partner Abuse and Violence in Teenage Relationships’, British Journal of Social Work, 39(2): 211–233.

Can anyone please help?
  • 1. remove "pp." for article-journal.
    Replace the "pages" macro with this code:

    <macro name="pages">
    <choose>
    <if type="chapter paper-conference article-journal article article-magazine article-newspaper book review review-book report" match="any">
    <group delimiter=" ">
    <choose>
    <if type="article-journal" match="none">
    <label variable="page" form="short"/>
    </if>
    </choose>
    <text variable="page"/>
    </group>
    </if>
    </choose>
    </macro>


    2. replace comma with colon

    Change the delimiter=", " in line 304 to delimiter=": ". (this is a quick'n'dirty fix and might not only change this delimiter for article-journal. It'll take more work for a proper fix.)

    General instructions here: https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
    Make sure to change file ID and title, otherwise it gets overwritten.
Sign In or Register to comment.