Add URLs to citations for Documents, Newspapers, and Reports (ASA 7th edition)
I know that this is not "correct" as per ASA style guide, but I'd like to implement it for a dissertation chapter that relies heavily on publicly available historical newspapers and reports (without the URLS, the citations are a lot less useful).
I found a prior thread about adding URLs to the citation wherever they are filled-in, but the shared code was for Chicago style (see, https://forums.zotero.org/discussion/45587/adding-urls-in-all-citations).
Any help with finding the appropriate code for editing ASA 6th/7th edition (add URL to Documents, Newspapers, and Reports) is much appreciated.
I found a prior thread about adding URLs to the citation wherever they are filled-in, but the shared code was for Chicago style (see, https://forums.zotero.org/discussion/45587/adding-urls-in-all-citations).
Any help with finding the appropriate code for editing ASA 6th/7th edition (add URL to Documents, Newspapers, and Reports) is much appreciated.
<macro name="access">
<group>
<choose>
<if type="webpage post-weblog post thesis" match="any">
<group delimiter=" ">
<text term="retrieved" text-case="capitalize-first"/>
<date variable="accessed" form="text"/>
<text prefix="(" suffix=")" variable="URL"/>
</group>
</if>
<else-if type="article-journal report" match="any">
<text variable="DOI" prefix="doi: "/>
</else-if>
</choose>
</group>
</macro>
(All it did here is add "thesis" to the "if type..." line. So if you need more, you'd add them there also)
You will need to change the file ID, self link as explained here: https://www.zotero.org/support/dev/citation_styles/style_editing_step-by-step
https://s3.amazonaws.com/zotero.org/images/forums/u5740492/b2m4bmo4xa1x6mm8tetg.png
article-newspaper
rest looks good.