Skip to content

Commit

Permalink
Update isnad-dipnotlu.csl (#5909)
Browse files Browse the repository at this point in the history
Update book-with editor(s) and standard item types.

Fix journal uses volume numbers only, without issue numbers.
  • Loading branch information
osmndrmz committed Jun 26, 2022
1 parent d65a6ac commit 6191640
Showing 1 changed file with 39 additions and 12 deletions.
51 changes: 39 additions & 12 deletions isnad-dipnotlu.csl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<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>
<!--
ISNAD FULL NOTES v.1.1
ISNAD FULL NOTES v.1.2
Document Type Mappings
ISNAD CSL
Expand Down Expand Up @@ -51,8 +51,8 @@
Interview interview
Interview article-journal, article-magazine, article-newspaper, book (as collection-title with interviewer extra)
Legislation legislation (with code number for official journal)
Legislation legislation (without code number other legal sources)
Standart book
Legislation legislation (without code number other legal sources)
Standard standard (For backward compability book with issued, collection-number, authority)
Case legal_case
Website webpage
Databese webpage
Expand Down Expand Up @@ -303,8 +303,7 @@
<choose>
<if type="entry-encyclopedia" match="none">
<names variable="editor">
<name/>
<label form="short" prefix=" (" suffix=")"/>
<name form="short"/>
</names>
</if>
</choose>
Expand Down Expand Up @@ -763,9 +762,18 @@
<macro name="locators-note">
<choose>
<if type="article-journal article-magazine article-newspaper" match="any">
<group delimiter="/">
<number variable="volume"/>
<number variable="issue"/>
<group delimiter=", ">
<group>
<choose>
<if match="all" variable="volume issue">
<number suffix="/" variable="volume"/>
</if>
<else>
<number variable="volume"/>
</else>
</choose>
<number variable="issue"/>
</group>
</group>
</if>
<else-if type="bill legislation legal_case" match="any">
Expand Down Expand Up @@ -867,9 +875,18 @@
<macro name="locators">
<choose>
<if type="article-journal article-magazine article-newspaper" match="any">
<group delimiter="/">
<number variable="volume"/>
<number variable="issue"/>
<group delimiter=", ">
<group>
<choose>
<if match="all" variable="volume issue">
<number suffix="/" variable="volume"/>
</if>
<else>
<number variable="volume"/>
</else>
</choose>
<number variable="issue"/>
</group>
</group>
</if>
<else-if type="bill legislation legal_case" match="any">
Expand Down Expand Up @@ -1034,7 +1051,17 @@
<if is-uncertain-date="issued">
<date variable="issued" form="numeric" date-parts="year" prefix="[" suffix="?]"/>
</if>
<else-if type="book" variable="issued collection-number">
<else-if type="standard">
<choose>
<if variable="collection-title" match="none">
<group delimiter=", ">
<date date-parts="year" form="numeric" variable="issued"/>
<text variable="collection-number"/>
</group>
</if>
</choose>
</else-if>
<else-if type="book" variable="issued collection-number authority">
<choose>
<if variable="collection-title" match="none">
<group delimiter=", ">
Expand Down

0 comments on commit 6191640

Please sign in to comment.