Harvard - Manchester Business School - in-text citation
Hi, I am completely new to csl langauge, so I need help to change the following in-text citation.
Currently in-text citation shows like that
(Fletcher 2004, p.1)
but I would like to have a semicolon between author and year, replace the semicolon with colon between year and page. And then I would like to remove the p. - so it should look like that:
(Fletcher, 2004: 1)
Would be great if someone could help. Thank you
Currently in-text citation shows like that
(Fletcher 2004, p.1)
but I would like to have a semicolon between author and year, replace the semicolon with colon between year and page. And then I would like to remove the p. - so it should look like that:
(Fletcher, 2004: 1)
Would be great if someone could help. Thank you
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.
Upgrade Storage
<layout prefix="(" suffix=")" delimiter="; "><group delimiter=", ">
<group delimiter=" ">
<text macro="author-short"/>
<text macro="year-date"/>
</group>
<group>
<label variable="locator" form="short"/>
<text variable="locator"/>
</group>
</group>
</layout>
to
<layout prefix="(" suffix=")" delimiter="; "><group delimiter=": ">
<group delimiter=" ">
<text macro="author-short"/>
<text macro="year-date"/>
</group>
<text variable="locator"/>
</group>
</layout>
http://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step for general instructions
For now, it seems to work like that (hopefully I have not done a mistake) and the citation looks like this:
(Fletcher, 2004: 1)
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=": ">
<group delimiter=", ">
<text macro="author-short"/>
<text macro="year-date"/>
</group>
<text variable="locator"/>
</group>
</layout>
it is the beginner again. This time, I would like to remove the punctuation after "et al." both in the citation and the bibliography.
Could someone help again, please?
THANKS
add this
<locale xml:lang="en"><terms>
<term name="et-al">et al</term>
</terms>
</locale>
right after the info section of the style, i.e. after
</info>For the other issue:
http://www.zotero.org/support/kb/given_name_disambiguation
<macro name="author-short"><names variable="author">
<name form="short" and="text" delimiter=", " delimiter-precedes-last="never" initialize-with=". "/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
<text macro="anon"/>
</substitute>
</names>
</macro>
change to this:
<macro name="author-short"><names variable="author">
<name form="short" and="text" delimiter=", " delimiter-precedes-last="never" initialize-with=". "/>
<et-al font-style="italic"/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
<text macro="anon"/>
</substitute>
</names>
</macro>
i.e. add in the et-al font-style="italic" line.
this is for in text citations, if you also want it in italics in the bibliography, do the same in the "author" macro.