Skip to content

Commit 1efce81

Browse files
authored
Update turabian-author-date.csl (#5695)
* Update turabian-author-date.csl Corrects the citation output in three cases: 1) inclusion of seasons of publication in journal article reference list items, 2) reference list items for reprinted books. .
1 parent 12dbba5 commit 1efce81

File tree

1 file changed

+37
-26
lines changed

1 file changed

+37
-26
lines changed

turabian-author-date.csl

+37-26
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@
1010
<name>Tony Chuang</name>
1111
<email>zcchuang@tiu.edu</email>
1212
</author>
13+
<contributor>
14+
<name>J. David Stark</name>
15+
<email>david@jdavidstark.com</email>
16+
<uri>https://www.jdavidstark.com/</uri>
17+
</contributor>
1318
<category citation-format="author-date"/>
1419
<category field="generic-base"/>
1520
<summary>The author-date variant of the Turabian 9th edition - Based on Chicago 17th (author-date)</summary>
16-
<updated>2020-05-16T19:15:00+00:00</updated>
21+
<updated>2021-10-29T15:28:42+00:00</updated>
1722
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
1823
</info>
1924
<locale xml:lang="en">
@@ -274,9 +279,6 @@
274279
<group delimiter=" " prefix=", ">
275280
<text term="issue" form="short"/>
276281
<text variable="issue"/>
277-
<date variable="issued" prefix="(" suffix=")">
278-
<date-part name="month"/>
279-
</date>
280282
</group>
281283
</else-if>
282284
<else>
@@ -285,6 +287,10 @@
285287
</date>
286288
</else>
287289
</choose>
290+
<!-- Moving this snippet here allows the season information to be produced properly per Turabian, 9th ed., ยง19.2.5. -->
291+
<date variable="issued" prefix=" (" suffix=")">
292+
<date-part name="month"/>
293+
</date>
288294
</if>
289295
<else-if type="legal_case">
290296
<text variable="volume" prefix=", "/>
@@ -430,12 +436,9 @@
430436
<macro name="date">
431437
<choose>
432438
<if variable="issued">
433-
<group delimiter=" ">
434-
<date variable="original-date" form="text" date-parts="year" prefix="[" suffix="]"/>
435-
<date variable="issued">
436-
<date-part name="year"/>
437-
</date>
438-
</group>
439+
<date variable="issued">
440+
<date-part name="year"/>
441+
</date>
439442
</if>
440443
<else-if variable="status">
441444
<text variable="status" text-case="capitalize-first"/>
@@ -445,6 +448,10 @@
445448
</else>
446449
</choose>
447450
</macro>
451+
<macro name="original-publication-date">
452+
<!-- Adds support for placing the original publication date at the end of the reference list entry per Turabian, 9th ed., ยง19.1.4. -->
453+
<date variable="original-date" form="text" date-parts="year" prefix=" (Orig. pub. " suffix=".)"/>
454+
</macro>
448455
<macro name="date-in-text">
449456
<choose>
450457
<if variable="issued">
@@ -624,23 +631,27 @@
624631
<key variable="title"/>
625632
</sort>
626633
<layout suffix=".">
627-
<group delimiter=". ">
628-
<text macro="contributors"/>
629-
<text macro="date"/>
630-
<text macro="title"/>
634+
<group suffix=".">
635+
<group delimiter=". ">
636+
<text macro="contributors"/>
637+
<text macro="date"/>
638+
<text macro="title"/>
639+
</group>
640+
<text macro="description"/>
641+
<text macro="secondary-contributors" prefix=". "/>
642+
<text macro="container-title" prefix=". "/>
643+
<text macro="container-contributors"/>
644+
<text macro="edition"/>
645+
<text macro="locators-chapter"/>
646+
<text macro="collection-title-journal" prefix=", " suffix=", "/>
647+
<text macro="locators"/>
648+
<text macro="collection-title" prefix=". "/>
649+
<text macro="issue"/>
650+
<text macro="locators-article"/>
651+
<text macro="access" prefix=". "/>
631652
</group>
632-
<text macro="description"/>
633-
<text macro="secondary-contributors" prefix=". "/>
634-
<text macro="container-title" prefix=". "/>
635-
<text macro="container-contributors"/>
636-
<text macro="edition"/>
637-
<text macro="locators-chapter"/>
638-
<text macro="collection-title-journal" prefix=", " suffix=", "/>
639-
<text macro="locators"/>
640-
<text macro="collection-title" prefix=". "/>
641-
<text macro="issue"/>
642-
<text macro="locators-article"/>
643-
<text macro="access" prefix=". "/>
653+
<!-- Adds support for placing the original publication date at the end of the reference list entry per Turabian, 9th ed., ยง19.1.4. -->
654+
<text macro="original-publication-date"/>
644655
</layout>
645656
</bibliography>
646657
</style>

0 commit comments

Comments
 (0)