Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update australian-guide-to-legal-citation.csl #1504

Merged
merged 3 commits into from
Apr 20, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions australian-guide-to-legal-citation.csl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<category citation-format="note"/>
<category field="law"/>
<summary>A modification of the Bluebook legal citation style for Australian conditions.</summary>
<updated>2012-10-25T21:15:26+00:00</updated>
<updated>2015-04-15T02:43:49+00:00</updated>
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
</info>
<locale>
Expand Down Expand Up @@ -186,7 +186,7 @@
<text variable="title" text-case="title"/>
</else-if>
<else-if type="legal_case">
<text variable="title" font-style="italic" strip-periods="true" form="short"/>
<text variable="title" font-style="italic" strip-periods="true" />
</else-if>
<else>
<text variable="title" quotes="true" text-case="title"/>
Expand All @@ -195,8 +195,8 @@
</macro>
<macro name="title-short">
<choose>
<if type="book legislation webpage thesis motion_picture manuscript" match="any">
<text variable="title" font-style="italic" text-case="title" form="short"/>
<if type="book legislation webpage thesis motion_picture manuscript legal_case" match="any">
<text variable="title-short" font-style="italic" text-case="title" />
</if>
<else>
<text variable="title" quotes="true" text-case="title" form="short"/>
Expand Down Expand Up @@ -459,7 +459,14 @@
<group delimiter=" ">
<group delimiter=", ">
<text macro="author-note"/>
<text macro="title"/>
<choose>
<if match="any" variable="title-short">
<text macro="title-short"/>
</if>
<else>
<text macro="title"/>
</else>
</choose>
</group>
<!-- we could work with title-short here-->
<group delimiter=" ">
Expand Down Expand Up @@ -518,6 +525,11 @@
</group>
<text macro="page-first"/>
<text variable="locator"/>
<choose>
<if type="legal_case bill legislation manuscript" match="any">
<text macro="title-short" text-case="title" quotes="true" prefix=" (" suffix=")"/>
</if>
</choose>
</group>
<text macro="URL"/>
</group>
Expand Down