Skip to content

Commit

Permalink
Fix disambiguation in chicago-author-date.csl when no issued date (#6823
Browse files Browse the repository at this point in the history
)
  • Loading branch information
wiseth authored Dec 25, 2023
1 parent 7e98456 commit ac3927c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion chicago-author-date.csl
Original file line number Diff line number Diff line change
Expand Up @@ -468,12 +468,15 @@
<date-part name="year"/>
</date>
</group>
<text variable="year-suffix"/>
</if>
<else-if variable="status">
<text variable="status" text-case="capitalize-first"/>
<text variable="year-suffix" prefix="-"/>
</else-if>
<else>
<text term="no date" form="short"/>
<text variable="year-suffix" prefix="-"/>
</else>
</choose>
</macro>
Expand All @@ -486,12 +489,15 @@
<date-part name="year"/>
</date>
</group>
<text variable="year-suffix"/>
</if>
<else-if variable="status">
<text variable="status"/>
<text variable="year-suffix" prefix="-"/>
</else-if>
<else>
<text term="no date" form="short"/>
<text variable="year-suffix" prefix="-"/>
</else>
</choose>
</macro>
Expand Down Expand Up @@ -631,7 +637,7 @@
<layout prefix="(" suffix=")" delimiter="; ">
<group delimiter=", ">
<choose>
<if variable="issued accessed" match="any">
<if variable="issued" match="any">
<group delimiter=" ">
<text macro="contributors-short"/>
<text macro="date-in-text"/>
Expand Down

0 comments on commit ac3927c

Please sign in to comment.