Skip to content

Commit d4037bf

Browse files
committed
WIP: St Paul Canon Law style
1 parent 16f58df commit d4037bf

File tree

1 file changed

+277
-0
lines changed

1 file changed

+277
-0
lines changed
Lines changed: 277 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,277 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-CA">
3+
<info>
4+
<title>St. Paul University - Faculty of Canon Law</title>
5+
<id>http://www.zotero.org/styles/st-paul-university-faculty-of-canon-law</id>
6+
<link href="http://www.zotero.org/styles/st-paul-university-faculty-of-canon-law" rel="self"/>
7+
<link href="http://www.unicatt.it/" rel="documentation"/>
8+
<author>
9+
<name>Sebastian Karcher</name>
10+
</author>
11+
<category citation-format="note"/>
12+
<category field="law"/>
13+
<summary/>
14+
<updated>2012-01-01T00:00:00+00:00</updated>
15+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
16+
</info>
17+
<!-- <locale xml:lang="en-CA"><terms></terms></locale>-->
18+
<macro name="author">
19+
<names variable="author">
20+
<name initialize-with="." name-as-sort-order="first" and="text">
21+
<name-part name="family" font-variant="small-caps"/>
22+
</name>
23+
<label form="short" prefix=" (" suffix=")"/>
24+
<substitute>
25+
<names variable="editor"/>
26+
<text macro="title"/>
27+
</substitute>
28+
</names>
29+
</macro>
30+
<macro name="author-note">
31+
<names variable="author">
32+
<name initialize-with="." and="text">
33+
<name-part name="family" font-variant="small-caps"/>
34+
</name>
35+
<label form="short" prefix=" (" suffix=")"/>
36+
<substitute>
37+
<names variable="editor"/>
38+
<text macro="title"/>
39+
</substitute>
40+
</names>
41+
</macro>
42+
<macro name="author-short">
43+
<names variable="author">
44+
<name initialize-with="." and="text" form="short">
45+
<name-part name="family" font-variant="small-caps"/>
46+
</name>
47+
<substitute>
48+
<names variable="editor"/>
49+
<text macro="title"/>
50+
</substitute>
51+
</names>
52+
</macro>
53+
<macro name="title">
54+
<choose>
55+
<if type="book">
56+
<text variable="title" font-style="italic" text-case="title"/>
57+
</if>
58+
<else-if type="article-journal article-magazine article-newspaper chapter" match="any">
59+
<text variable="title" quotes="true" text-case="title"/>
60+
</else-if>
61+
<else-if type="entry-encyclopedia entry-dictionary" match="any">
62+
<text variable="title" quotes="true" text-case="title" prefix="art. "/>
63+
</else-if>
64+
<else>
65+
<text variable="title" text-case="title"/>
66+
</else>
67+
</choose>
68+
</macro>
69+
<macro name="title-short">
70+
<choose>
71+
<if type="book">
72+
<text variable="title" font-style="italic" text-case="title" form="short"/>
73+
</if>
74+
<else-if type="article-journal article-magazine article-newspaper chapter" match="any">
75+
<text variable="title" quotes="true" text-case="title" form="short"/>
76+
</else-if>
77+
<else>
78+
<text variable="title" text-case="title" form="short"/>
79+
</else>
80+
</choose>
81+
</macro>
82+
<macro name="editor-translator-book">
83+
<choose>
84+
<if type="book">
85+
<names variable="editor translator" delimiter=", ">
86+
<name initialize-with="." and="text"/>
87+
<label form="short" prefix=" (" suffix=")"/>
88+
</names>
89+
</if>
90+
</choose>
91+
</macro>
92+
<macro name="editor-translator">
93+
<names variable="editor translator" delimiter=", ">
94+
<name initialize-with="." and="text"/>
95+
<label form="short" prefix=" (" suffix=")"/>
96+
</names>
97+
</macro>
98+
<macro name="container-title">
99+
<text variable="container-title" font-style="italic"/>
100+
</macro>
101+
<macro name="edition">
102+
<choose>
103+
<if is-numeric="edition">
104+
<group delimiter=" ">
105+
<number variable="edition" form="numeric"/>
106+
<text term="edition" form="short"/>
107+
</group>
108+
</if>
109+
<else>
110+
<text variable="edition"/>
111+
</else>
112+
</choose>
113+
</macro>
114+
<macro name="series">
115+
<group delimiter=", ">
116+
<text variable="collection-title"/>
117+
<choose>
118+
<if is-numeric="collection-number">
119+
<group delimiter=" ">
120+
<text term="issue" form="short"/>
121+
<number variable="collection-number"/>
122+
</group>
123+
</if>
124+
<else>
125+
<text variable="collection-number"/>
126+
</else>
127+
</choose>
128+
</group>
129+
</macro>
130+
<macro name="publisher">
131+
<choose>
132+
<if type="book chapter entry-dictionary entry-encyclopedia paper-conference report thesis" match="any">
133+
<group delimiter=", ">
134+
<choose>
135+
<if type="thesis report" match="any">
136+
<text variable="genre"/>
137+
</if>
138+
</choose>
139+
<text variable="publisher-place"/>
140+
<text variable="publisher"/>
141+
<date variable="issued" form="numeric" date-parts="year"/>
142+
</group>
143+
</if>
144+
</choose>
145+
</macro>
146+
<macro name="volume">
147+
<choose>
148+
<if type="article-journal">
149+
<group delimiter=" ">
150+
<group delimiter=", ">
151+
<group delimiter=" ">
152+
<text term="volume" form="short"/>
153+
<text variable="volume"/>
154+
</group>
155+
<group delimiter=" ">
156+
<text term="issue" form="short"/>
157+
<text variable="issue"/>
158+
</group>
159+
</group>
160+
<date variable="issued" form="numeric" date-parts="year" prefix="(" suffix=")"/>
161+
</group>
162+
</if>
163+
<else-if type="book chapter entry-dictionary entry-encyclopedia paper-conference report thesis" match="any">
164+
<group delimiter=" ">
165+
<text term="volume" form="short"/>
166+
<text variable="volume"/>
167+
</group>
168+
</else-if>
169+
<else>
170+
<date variable="issued" form="text"/>
171+
</else>
172+
</choose>
173+
</macro>
174+
<macro name="container">
175+
<group delimiter=" ">
176+
<choose>
177+
<if type="article-journal article-magazine article-newspaper chapter entry-dictionary entry-encyclopedia paper-conference" match="any">
178+
<text term="in"/>
179+
</if>
180+
</choose>
181+
<group delimiter=", ">
182+
<text macro="editor-translator"/>
183+
<text macro="container-title"/>
184+
</group>
185+
</group>
186+
</macro>
187+
<macro name="access">
188+
<choose>
189+
<if variable="URL">
190+
<group delimiter=" ">
191+
<text variable="URL"/>
192+
<date variable="accessed" form="text" prefix="(" suffix=")"/>
193+
</group>
194+
</if>
195+
</choose>
196+
</macro>
197+
<macro name="locators">
198+
<choose>
199+
<if locator="page">
200+
<text variable="locator"/>
201+
</if>
202+
<else>
203+
<group delimiter=" ">
204+
<label variable="locator" form="short"/>
205+
<text variable="locator"/>
206+
</group>
207+
</else>
208+
</choose>
209+
</macro>
210+
<macro name="pages">
211+
<text variable="page"/>
212+
</macro>
213+
<macro name="locators-pages">
214+
<choose>
215+
<if variable="locator">
216+
<text macro="locators"/>
217+
</if>
218+
<else>
219+
<text macro="pages"/>
220+
</else>
221+
</choose>
222+
</macro>
223+
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-names="true" disambiguate-add-givenname="true">
224+
<layout suffix="." delimiter="; ">
225+
<choose>
226+
<if position="ibid-with-locator">
227+
<group delimiter=", ">
228+
<text term="ibid"/>
229+
<text macro="locators"/>
230+
</group>
231+
</if>
232+
<else-if position="ibid">
233+
<text term="ibid"/>
234+
</else-if>
235+
<else-if position="subsequent">
236+
<group delimiter=", ">
237+
<text macro="author-short"/>
238+
<text macro="title-short"/>
239+
<text macro="locators"/>
240+
</group>
241+
</else-if>
242+
<else>
243+
<group delimiter=", ">
244+
<text macro="author-note"/>
245+
<text macro="title"/>
246+
<text macro="container"/>
247+
<text macro="edition"/>
248+
<text macro="series"/>
249+
<text macro="volume"/>
250+
<text macro="publisher"/>
251+
<text macro="access"/>
252+
<text macro="locators-pages"/>
253+
</group>
254+
</else>
255+
</choose>
256+
</layout>
257+
</citation>
258+
<bibliography hanging-indent="true" et-al-min="4" et-al-use-first="1" entry-spacing="0">
259+
<sort>
260+
<key macro="sort-key"/>
261+
<key variable="issued"/>
262+
</sort>
263+
<layout suffix=".">
264+
<group delimiter=", ">
265+
<text macro="author"/>
266+
<text macro="title"/>
267+
<text macro="container"/>
268+
<text macro="edition"/>
269+
<text macro="series"/>
270+
<text macro="volume"/>
271+
<text macro="publisher"/>
272+
<text macro="access"/>
273+
<text macro="pages"/>
274+
</group>
275+
</layout>
276+
</bibliography>
277+
</style>

0 commit comments

Comments
 (0)