Help modifying style
Hi all,
I'm trying to build a custom style for the paper I'm writing. Details of the style are here:
http://www.lib.unimelb.edu.au/cite/ahcca/index.html.
I've started modifying the Chicago Manual of Style (Note with Bibliography) CSL and have succeeded in replacing the 'title' field with 'year' as required, but I need to insert 'page' before the page number (ie 'p.' or 'pp.') and I'm stuck.
I also need to remove the 'ibid' referencing and provide full references even when repeated.
Suggestions would be much appreciated.
Thanks.
I'm trying to build a custom style for the paper I'm writing. Details of the style are here:
http://www.lib.unimelb.edu.au/cite/ahcca/index.html.
I've started modifying the Chicago Manual of Style (Note with Bibliography) CSL and have succeeded in replacing the 'title' field with 'year' as required, but I need to insert 'page' before the page number (ie 'p.' or 'pp.') and I'm stuck.
I also need to remove the 'ibid' referencing and provide full references even when repeated.
Suggestions would be much appreciated.
Thanks.
http://www.lib.unimelb.edu.au/cite/ahcca/index.html
And just to clarify, it's only the citation style I'm concerned with - the bibliography is to be a standard (different style).
For this, change:
<macro name="point-locators-subsequent">
<group>
<choose>
<if locator="page" match="none">
<label variable="locator" form="short" include-period="true" suffix=" "/>
</if>
</choose>
<text variable="locator"/>
</group>
</macro>
into
<macro name="point-locators-subsequent">
<label variable="locator" form="short" include-period="true" suffix=" "/>
<text variable="locator"/>
</macro>
I also need to remove the 'ibid' referencing and provide full references even when repeated.
For this, change:
<layout prefix="" suffix="." delimiter="; ">
<choose>
<if position="ibid-with-locator">
<group delimiter=", ">
<text term="ibid" text-case="capitalize-first" suffix="."/>
<text macro="point-locators-subsequent"/>
</group>
</if>
<else-if position="ibid">
<text term="ibid" text-case="capitalize-first" suffix="."/>
</else-if>
<else>
<group delimiter=", ">
<text macro="contributors-short"/>
<text macro="title-short"/>
<text macro="point-locators-subsequent"/>
</group>
</else>
</choose>
</layout>
into
<layout prefix="" suffix="." delimiter="; ">
<group delimiter=", ">
<text macro="contributors-short"/>
<text macro="title-short"/>
<text macro="point-locators-subsequent"/>
</group>
</layout>
Many, many thanks.
http://www.lib.unimelb.edu.au/cite/ahcca/ahcca_wwwt.html
http://www.lib.unimelb.edu.au/cite/ahcca/ahcca_exhibt.html
and author, website in the sace of a couple of specialised databases:
http://www.lib.unimelb.edu.au/cite/ahcca/ahcca_grovet.html
For the last one I think I'll just have to modify the citations manually, but any help on the other cases would be much appreciated.
For the specialised database Grove Art Online I've been using Encyclopedia Article. Title is article title, Author is article author, Encyclopedia Title is 'Grove Art Online', Publisher, Editor and any other information necessary entered as normal. I just need to output the footnote in the form:
26. Smith, http://www.groveart.com/
I know I'm probably going to have to do some manual editing o the Bibliography, but if I can get the notes working that will be great for now.