Skip to content

Commit ad30687

Browse files
author
github actions
committed
Squashed 'src/main/resources/csl-styles/' changes from 469deb6..93469bb
93469bb Create journal-of-musculoskeletal-research.csl (#4990) 43287c7 Update taxon.csl a little more (#4989) 9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (#4982) 00c3cec Update isnad-metinici.csl (#4988) 864a64c Update medicine-and-science-in-sports-and-exercise.csl (#4983) 0c76011 Don't demote particles in Equine Vet J (#4984) 603ee73 Fix MLA editor translator (#4985) 40d207c Update pravnik.csl (#4986) c5fe30c Update isnad-dipnotlu.csl (#4987) git-subtree-dir: src/main/resources/csl-styles git-subtree-split: 93469bb
1 parent f80fb0b commit ad30687

10 files changed

+239
-72
lines changed

equine-veterinary-journal.csl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" default-locale="en-US">
2+
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="never" default-locale="en-US">
33
<info>
44
<title>Equine Veterinary Journal</title>
55
<id>http://www.zotero.org/styles/equine-veterinary-journal</id>

isnad-dipnotlu.csl

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@
416416
</if>
417417
</choose>
418418
</if>
419-
<else-if type="book graphic manuscript report map personal_communication" match="any">
419+
<else-if type="book thesis graphic manuscript report map personal_communication" match="any">
420420
<text variable="title" text-case="title" font-style="italic"/>
421421
<text variable="version" prefix=" "/>
422422
</else-if>

isnad-metinici.csl

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
</if>
270270
</choose>
271271
</if>
272-
<else-if type="book graphic manuscript report map personal_communication" match="any">
272+
<else-if type="book thesis graphic manuscript report map personal_communication" match="any">
273273
<text variable="title" text-case="title" font-style="italic"/>
274274
<text variable="version" prefix=" "/>
275275
</else-if>
+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB">
3+
<info>
4+
<title>Journal of Musculoskeletal Research</title>
5+
<title-short>JMR</title-short>
6+
<id>http://www.zotero.org/styles/journal-of-musculoskeletal-research</id>
7+
<link href="http://www.zotero.org/styles/journal-of-musculoskeletal-research" rel="self"/>
8+
<link href="http://www.zotero.org/styles/nature" rel="template"/>
9+
<link href="https://www.worldscientific.com/toc/jmr/23/01" rel="documentation"/>
10+
<author>
11+
<name>Patrick O'Brien</name>
12+
</author>
13+
<category citation-format="numeric"/>
14+
<category field="medicine"/>
15+
<category field="biology"/>
16+
<issn>0218-9577</issn>
17+
<eissn>1793-6497</eissn>
18+
<updated>2020-08-25T08:02:46+00:00</updated>
19+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
20+
</info>
21+
<locale xml:lang="en">
22+
<terms>
23+
<term name="accessed">accessed on</term>
24+
</terms>
25+
</locale>
26+
<macro name="title">
27+
<choose>
28+
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
29+
<group delimiter=", ">
30+
<text variable="title" font-style="italic"/>
31+
<text macro="volume"/>
32+
</group>
33+
</if>
34+
<else>
35+
<text variable="title"/>
36+
</else>
37+
</choose>
38+
</macro>
39+
<macro name="author">
40+
<names variable="author">
41+
<name delimiter-precedes-last="never" initialize-with="" name-as-sort-order="all" sort-separator=" "/>
42+
<label form="short" prefix=", "/>
43+
<et-al font-style="italic"/>
44+
</names>
45+
</macro>
46+
<macro name="access">
47+
<choose>
48+
<if variable="DOI">
49+
<text variable="DOI" prefix="doi: "/>
50+
</if>
51+
</choose>
52+
</macro>
53+
<macro name="issuance">
54+
<choose>
55+
<if type="bill book graphic legal_case legislation motion_picture song thesis chapter paper-conference" match="any">
56+
<group delimiter=", ">
57+
<text variable="publisher-place"/>
58+
<text variable="publisher" form="long"/>
59+
<text macro="pages"/>
60+
<date variable="issued">
61+
<date-part name="year"/>
62+
</date>
63+
</group>
64+
</if>
65+
<else-if type="webpage post post-weblog" match="any">
66+
<group delimiter=" ">
67+
<text variable="URL"/>
68+
<group delimiter=" " prefix="(" suffix=")">
69+
<text term="accessed"/>
70+
<date form="text" variable="accessed"/>
71+
</group>
72+
</group>
73+
</else-if>
74+
<else>
75+
<date variable="issued">
76+
<date-part name="year"/>
77+
</date>
78+
</else>
79+
</choose>
80+
</macro>
81+
<macro name="container-title">
82+
<choose>
83+
<if type="article-journal">
84+
<text variable="container-title" form="short" strip-periods="true" font-style="italic"/>
85+
</if>
86+
<else>
87+
<text variable="container-title" font-style="italic" suffix=","/>
88+
</else>
89+
</choose>
90+
</macro>
91+
<macro name="editor">
92+
<choose>
93+
<if type="chapter paper-conference" match="any">
94+
<names variable="editor">
95+
<label form="verb" suffix=" "/>
96+
<name delimiter-precedes-last="never" initialize-with="" name-as-sort-order="all" sort-separator=" "/>
97+
</names>
98+
</if>
99+
</choose>
100+
</macro>
101+
<macro name="volume">
102+
<choose>
103+
<if type="article-journal" match="any">
104+
<group delimiter=":" suffix=",">
105+
<group>
106+
<text variable="volume" font-weight="bold"/>
107+
<text variable="issue" prefix="(" suffix=")"/>
108+
</group>
109+
<text macro="pages"/>
110+
</group>
111+
</if>
112+
<else>
113+
<group delimiter=" ">
114+
<label text-case="capitalize-first" variable="volume" form="short"/>
115+
<text variable="volume"/>
116+
</group>
117+
</else>
118+
</choose>
119+
</macro>
120+
<macro name="pages">
121+
<choose>
122+
<if type="article-journal" match="any">
123+
<text variable="page"/>
124+
</if>
125+
<else-if type="chapter" match="any">
126+
<group delimiter=" ">
127+
<label variable="page" form="short"/>
128+
<text variable="page"/>
129+
</group>
130+
</else-if>
131+
</choose>
132+
</macro>
133+
<citation collapse="citation-number">
134+
<sort>
135+
<key variable="citation-number"/>
136+
</sort>
137+
<layout vertical-align="sup" delimiter=",">
138+
<text variable="citation-number"/>
139+
</layout>
140+
</citation>
141+
<bibliography et-al-min="7" et-al-use-first="6" second-field-align="flush" entry-spacing="0" line-spacing="2">
142+
<layout suffix=".">
143+
<text variable="citation-number" suffix="."/>
144+
<group delimiter=" ">
145+
<text macro="author" suffix="."/>
146+
<text macro="title" suffix="."/>
147+
<choose>
148+
<if type="chapter paper-conference" match="any">
149+
<text term="in" text-case="capitalize-first" suffix=":"/>
150+
</if>
151+
</choose>
152+
<text macro="container-title"/>
153+
<text macro="editor" suffix=","/>
154+
<text macro="volume"/>
155+
<text macro="issuance" suffix="."/>
156+
<text macro="access"/>
157+
</group>
158+
</layout>
159+
</bibliography>
160+
</style>

medicine-and-science-in-sports-and-exercise.csl

+15-13
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<category field="medicine"/>
1919
<issn>0195-9131</issn>
2020
<eissn>1530-0315</eissn>
21-
<updated>2017-12-13T13:21:47+00:00</updated>
21+
<updated>2020-08-23T15:13:28+00:00</updated>
2222
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
2323
</info>
2424
<locale xml:lang="en">
@@ -62,7 +62,7 @@
6262
<if match="none" variable="page">
6363
<group prefix="[" suffix="]" delimiter=" ">
6464
<text term="cited"/>
65-
<date variable="accessed" suffix=" ">
65+
<date variable="accessed">
6666
<date-part name="year"/>
6767
<date-part name="month" prefix=" " form="short" strip-periods="true"/>
6868
<date-part name="day" prefix=" "/>
@@ -91,7 +91,7 @@
9191
<if match="none" variable="page">
9292
<group delimiter=". ">
9393
<group delimiter=": ">
94-
<text term="available at"/>
94+
<text term="available at" text-case="capitalize-first"/>
9595
<text variable="URL"/>
9696
</group>
9797
<text variable="DOI" prefix="doi:"/>
@@ -120,15 +120,6 @@
120120
<macro name="title">
121121
<group delimiter=" ">
122122
<text variable="title"/>
123-
<choose>
124-
<if type="article-journal" match="any">
125-
<choose>
126-
<if variable="page" match="none">
127-
<text term="internet" prefix="[" suffix="]" text-case="capitalize-first"/>
128-
</if>
129-
</choose>
130-
</if>
131-
</choose>
132123
</group>
133124
</macro>
134125
<macro name="edition">
@@ -185,7 +176,18 @@
185176
</else-if>
186177
<else>
187178
<text macro="title" suffix=". "/>
188-
<text variable="container-title" form="short" strip-periods="true" font-style="italic" suffix=". "/>
179+
<group delimiter=" " suffix=". ">
180+
<text variable="container-title" form="short" strip-periods="true" font-style="italic"/>
181+
<choose>
182+
<if type="article-journal" match="any">
183+
<choose>
184+
<if variable="page" match="none">
185+
<text term="internet" prefix="[" suffix="]" text-case="capitalize-first"/>
186+
</if>
187+
</choose>
188+
</if>
189+
</choose>
190+
</group>
189191
<text macro="date" suffix=";"/>
190192
<text variable="volume"/>
191193
<text variable="issue" prefix="(" suffix=")"/>

modern-language-association.csl

+28-14
Original file line numberDiff line numberDiff line change
@@ -89,26 +89,40 @@
8989
<text variable="container-title" font-style="italic" text-case="title"/>
9090
</macro>
9191
<macro name="other-contributors">
92-
<group delimiter=", ">
93-
<choose>
94-
<if variable="container-title" match="any">
95-
<names variable="container-author editor illustrator interviewer translator" delimiter=", ">
92+
<choose>
93+
<if variable="container-title" match="any">
94+
<group delimiter=", ">
95+
<names variable="container-author" delimiter=", ">
9696
<label form="verb" suffix=" "/>
9797
<name and="text"/>
9898
</names>
99-
</if>
100-
<else>
101-
<names variable="container-author editor illustrator interviewer translator" delimiter=", ">
99+
<names variable="editor translator" delimiter=", ">
100+
<label form="verb" suffix=" "/>
101+
<name and="text"/>
102+
</names>
103+
<names variable="director illustrator interviewer" delimiter=", ">
104+
<label form="verb" suffix=" "/>
105+
<name and="text"/>
106+
</names>
107+
</group>
108+
</if>
109+
<else>
110+
<group delimiter=", ">
111+
<names variable="container-author" delimiter=", ">
102112
<label form="verb" suffix=" " text-case="capitalize-first"/>
103113
<name and="text"/>
104114
</names>
105-
</else>
106-
</choose>
107-
<names variable="director">
108-
<label form="verb" suffix=" " text-case="capitalize-first"/>
109-
<name and="text"/>
110-
</names>
111-
</group>
115+
<names variable="editor translator" delimiter=", ">
116+
<label form="verb" suffix=" " text-case="capitalize-first"/>
117+
<name and="text"/>
118+
</names>
119+
<names variable="director illustrator interviewer" delimiter=", ">
120+
<label form="verb" suffix=" " text-case="capitalize-first"/>
121+
<name and="text"/>
122+
</names>
123+
</group>
124+
</else>
125+
</choose>
112126
</macro>
113127
<macro name="version">
114128
<group delimiter=", ">

pravnik.csl

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<category field="law"/>
1616
<issn>0231-6625</issn>
1717
<summary>Suitable for Právník - a journal published by the Institute of State and Law of the Czech Academy of Sciences.</summary>
18-
<updated>2020-05-30T10:00:00+00:00</updated>
18+
<updated>2020-08-23T10:00:00+00:00</updated>
1919
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
2020
</info>
2121
<locale xml:lang="cs">
@@ -322,7 +322,7 @@
322322
</group>
323323
</if>
324324
<else-if position="ibid">
325-
<text term="ibid"/>
325+
<text term="ibid" suffix="."/>
326326
</else-if>
327327
<else-if position="subsequent">
328328
<text macro="contributors-short" suffix=". "/>

renamed-styles.json

+1
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@
493493
"unisa-harvard": "university-of-south-australia-harvard-2011",
494494
"unisa-harvard3": "university-of-south-australia-harvard-2011",
495495
"universite-laval-com": "universite-laval-departement-dinformation-et-de-communication",
496+
"university-college-lillebaelt-harvard": "ucl-university-college-harvard",
496497
"university-college-lillebaelt-vancouver": "ucl-university-college-vancouver",
497498
"university-college-lillebaelt-vancouver-en": "ucl-university-college-vancouver",
498499
"university-of-melbourne": "harvard-the-university-of-melbourne",

0 commit comments

Comments
 (0)