Thesis citations?
Hi,
I've been unable to find the information by searching through the discussions.
My issue is related to the formatting of in-text newspaper citations for my thesis. I need the format to be "(Bendigo Advertiser 12 October 1859, p. 2)", "(Bendigo Advertiser 8 December 1859, p. 3)".
I am unable to find a CSL issuing dates in this format. The closest to my university's style guide, "Harvard - The University of Melbourne", uses the typical referencing style of "(Bendigo Advertiser 1859a)", "(Bendigo Advertiser 1859b)" instead.
I can add the date by adding it as a prefix if I quote the article as "Bendigo Advertiser (12 October 1859a, p. 2)", but I can't get rid of the 'a' and 'b' at the end of the year. Nor can I make this work for an a full in-text citation, as it ends up either "(12 October Bendigo Advertiser 1859a, p. 2)" or "(Bendigo Advertiser 1859a 12 October, p. 2)". Any ideas?
Thanks in advance.
I've been unable to find the information by searching through the discussions.
My issue is related to the formatting of in-text newspaper citations for my thesis. I need the format to be "(Bendigo Advertiser 12 October 1859, p. 2)", "(Bendigo Advertiser 8 December 1859, p. 3)".
I am unable to find a CSL issuing dates in this format. The closest to my university's style guide, "Harvard - The University of Melbourne", uses the typical referencing style of "(Bendigo Advertiser 1859a)", "(Bendigo Advertiser 1859b)" instead.
I can add the date by adding it as a prefix if I quote the article as "Bendigo Advertiser (12 October 1859a, p. 2)", but I can't get rid of the 'a' and 'b' at the end of the year. Nor can I make this work for an a full in-text citation, as it ends up either "(12 October Bendigo Advertiser 1859a, p. 2)" or "(Bendigo Advertiser 1859a 12 October, p. 2)". Any ideas?
Thanks in advance.
If there is an author for the newspaper article:
(Brett 2009, p. 6) or
Brett (2009, p. 6)
Reference list:
Brett, J 2009, 'Libs risk becoming a down-market protest party', Age, 5 December, p. 6.
If there is no author:
(Australian 12 November 2010, p. 14) or
The Australian (12 November 2010, p. 14)
Reference list:
Australian
* This is not normally needed, except for theses.
If it is an online newspaper article:
(Gittens 2010) or
Gittens (2010)
Reference list:
Gittins, R 2010, 'Suits us to be deluded on climate,' Age 17 November, viewed 6 December 2014, <http://www.theage.com.au/environment/climate-change/suits-us-to-be-deluded-on-climate-20101117-17wyp.html>.
While that's possible, I don't believe we have any style that does that, nor is it super easy to do in CSL. You can try yourself following https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step and if you get close we can help you with specific issues.
If full date for all newspaper articles is OK, do check American Psychological Association, which is a Harvard-type style.
Otherwise, can I edit it with a text editor and import it into Zotero's standalone?
I had used the style before, and thought it was okay. But it just wasn't in Zotero's list today, nor the editor, and the .csl file vanished. I guess it is just because the thesis is almost due, so of course everything has to go wrong!
I've gotten everything back up and operating again, but I'm still having problems with the in-text citation date for newspapers.
I take it that I have to use disambiguate-add-year-suffix=false specifically for newspapers, but I'm not sure it works outside of the citation tag. Are there other tags it can work in?
I've tried this, but the years still get their unwanted alphabetic endings (eg. Bendigo Advertiser 1859a, p. 2; 1859b, p. 2):
<macro name="year-date-citations">
<choose>
<if type="article-newspaper" match="any">
<date variable="issued" delimiter=" " disambiguate-add-year-suffix="false">
<date-part name="year"/>
</date>
</if>
<else>
<if variable="issued">
<date variable="issued">
<date-part name="year"/>
</date>
</if>
<else>
<text term="no date" form="short"/>
</else>
</else>
</choose>
</macro>
You can't easily disable year suffixes for individual item types, but that also wouldn't seem like what you actually want. Isn't this about
If an item is a newspaper article and has a regular author --> treat it like any other item.
If it doesn't have an author --> substitute the author by the publication name and specify a full date.
If an item is a newspaper article has an author --> treat it as any other item
If an item is a newspaper article without an author --> substitute author with publication name, and specify full date with no year suffix
I had gotten to the stage with everything working, but looks like I messed something up in playing around with the suffix, because it is no longer showing the full date. Back to the code I go!
<if type="article-newspaper" match="any">
<choose>
<if variable="author" match="none">
<date variable="issued" form="text"/>
</if>
<else>
<date variable="issued" form="numeric" date-parts="year"/>
</else>
</choose>
</if>
<else>
and then handle the date for other item types.
Then insert container-title as a substitute into the author macro and you should be good to go.
(Bendigo Advertiser 21 September 1859, p. 2; 25 October 1859, p. 2)
I think I've done all I can to acquiesce to my Supervisor's requirements, as, while I can just display 'Bendigo Advertiser.' in the Bibliography, I gather that can't make it ignore duplicates (eg. I've referenced the Bendigo Advertiser 11 times, so it will show 'Bendigo Advertiser.' 11 times in the Bibliography, though my Supervisor only wants it once). I have to delete the excess by hand, as I add the text for Primary and Secondary sources?
Add the following the the <bibliography> line:
subsequent-author-substitute="---"
See the .csl style for Chicago (author-date) for an example.