Skip to content

Commit a46174d

Browse files
authored
Create social-anthropology.csl (#5512)
1 parent a91627c commit a46174d

File tree

1 file changed

+232
-0
lines changed

1 file changed

+232
-0
lines changed

social-anthropology.csl

Lines changed: 232 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,232 @@
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">
3+
<!-- Polyglot; journal publishes in English and French -->
4+
<info>
5+
<title>Social Anthropology/Anthropologie Sociale</title>
6+
<id>http://www.zotero.org/styles/social-anthropology</id>
7+
<link href="http://www.zotero.org/styles/social-anthropology" rel="self"/>
8+
<link href="http://www.zotero.org/styles/ecological-restoration" rel="template"/>
9+
<link href="https://onlinelibrary.wiley.com/page/journal/14698676/homepage/forauthors.html" rel="documentation"/>
10+
<author>
11+
<name>Patrick O'Brien</name>
12+
</author>
13+
<category citation-format="author-date"/>
14+
<category field="anthropology"/>
15+
<issn>0964-0282</issn>
16+
<eissn>1469-8676</eissn>
17+
<updated>2021-06-17T08:37:04+00:00</updated>
18+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
19+
</info>
20+
<locale>
21+
<style-options punctuation-in-quote="false"/>
22+
<terms>
23+
<term name="open-quote">‘</term>
24+
<term name="close-quote">’</term>
25+
<term name="open-inner-quote">“</term>
26+
<term name="close-inner-quote">”</term>
27+
</terms>
28+
</locale>
29+
<macro name="container-contributors">
30+
<choose>
31+
<if type="chapter paper-conference" match="any">
32+
<group delimiter=" ">
33+
<text term="in"/>
34+
<names variable="editor translator" delimiter=", ">
35+
<name and="text" initialize-with=". " delimiter=", "/>
36+
<label form="short" strip-periods="false" prefix=" (" suffix=")"/>
37+
</names>
38+
</group>
39+
</if>
40+
</choose>
41+
</macro>
42+
<macro name="secondary-contributors">
43+
<choose>
44+
<if type="chapter paper-conference" match="none">
45+
<names variable="editor translator" delimiter=", " prefix=" (" suffix=")">
46+
<name and="text" initialize-with=". " delimiter=", "/>
47+
<label prefix=", "/>
48+
</names>
49+
</if>
50+
</choose>
51+
</macro>
52+
<macro name="author">
53+
<names variable="author">
54+
<name name-as-sort-order="first" and="text" sort-separator=", " initialize-with=". " delimiter=", "/>
55+
<label prefix=" (" suffix=")"/>
56+
<substitute>
57+
<names variable="editor"/>
58+
<names variable="translator"/>
59+
<text variable="title"/>
60+
</substitute>
61+
</names>
62+
</macro>
63+
<macro name="author-short">
64+
<names variable="author">
65+
<name form="short" and="text" delimiter=", " initialize-with=". "/>
66+
<substitute>
67+
<names variable="editor"/>
68+
<names variable="translator"/>
69+
<text macro="title"/>
70+
</substitute>
71+
</names>
72+
</macro>
73+
<macro name="title">
74+
<choose>
75+
<if type="book report" match="any">
76+
<text variable="title" font-style="italic"/>
77+
</if>
78+
<else>
79+
<text variable="title" quotes="true"/>
80+
</else>
81+
</choose>
82+
</macro>
83+
<macro name="access">
84+
<choose>
85+
<if type="webpage post post-weblog" match="any">
86+
<group delimiter=" ">
87+
<text variable="URL"/>
88+
<group delimiter=" " prefix="(" suffix=")">
89+
<text term="accessed"/>
90+
<date form="numeric" variable="accessed"/>
91+
</group>
92+
</group>
93+
</if>
94+
</choose>
95+
</macro>
96+
<macro name="publisher">
97+
<choose>
98+
<if type="article-journal article-magazine" match="none">
99+
<choose>
100+
<if type="thesis" match="any">
101+
<text variable="genre" suffix=", "/>
102+
<text variable="publisher" prefix=": "/>
103+
</if>
104+
<else>
105+
<text variable="publisher-place"/>
106+
<text variable="publisher" prefix=": "/>
107+
</else>
108+
</choose>
109+
</if>
110+
</choose>
111+
</macro>
112+
<macro name="issued">
113+
<choose>
114+
<if variable="issued">
115+
<group prefix=" " suffix=".">
116+
<date variable="issued">
117+
<date-part name="year"/>
118+
</date>
119+
<choose>
120+
<if type="article-journal bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="none">
121+
<date variable="issued">
122+
<date-part prefix=", " name="month"/>
123+
<date-part prefix=" " name="day"/>
124+
</date>
125+
</if>
126+
</choose>
127+
</group>
128+
</if>
129+
<else>
130+
<text prefix=" (" term="no date" suffix=")." form="short"/>
131+
</else>
132+
</choose>
133+
</macro>
134+
<macro name="issued-year">
135+
<choose>
136+
<if variable="issued">
137+
<date variable="issued">
138+
<date-part name="year"/>
139+
</date>
140+
</if>
141+
<else>
142+
<text term="no date" form="short"/>
143+
</else>
144+
</choose>
145+
</macro>
146+
<macro name="edition">
147+
<choose>
148+
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
149+
<choose>
150+
<if is-numeric="edition">
151+
<number variable="edition" form="long-ordinal" text-case="capitalize-first"/>
152+
<text term="edition" form="long" prefix=" " suffix="."/>
153+
</if>
154+
<else>
155+
<text variable="edition" suffix="."/>
156+
</else>
157+
</choose>
158+
</if>
159+
</choose>
160+
</macro>
161+
<macro name="locators">
162+
<choose>
163+
<if type="article-journal article-magazine article-newspaper" match="any">
164+
<text variable="container-title" prefix=" " font-style="italic"/>
165+
<choose>
166+
<if variable="page volume" match="all">
167+
<text variable="volume" prefix=" "/>
168+
<text variable="page" prefix=":"/>
169+
</if>
170+
<else>
171+
<text variable="DOI" prefix=" DOI "/>
172+
</else>
173+
</choose>
174+
</if>
175+
<else-if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
176+
<group delimiter=", ">
177+
<text macro="container-contributors"/>
178+
<text variable="container-title" font-style="italic"/>
179+
<text macro="secondary-contributors"/>
180+
<text variable="page"/>
181+
</group>
182+
</else-if>
183+
<else>
184+
<text variable="container-title"/>
185+
</else>
186+
</choose>
187+
</macro>
188+
<macro name="citation-locator">
189+
<group>
190+
<choose>
191+
<if match="none" locator="page">
192+
<label variable="locator" form="short"/>
193+
</if>
194+
</choose>
195+
<text variable="locator" prefix=" "/>
196+
</group>
197+
</macro>
198+
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-year-suffix="true" collapse="year">
199+
<sort>
200+
<key variable="issued"/>
201+
<key macro="author"/>
202+
</sort>
203+
<layout prefix="(" suffix=")" delimiter=", ">
204+
<group delimiter=": ">
205+
<group delimiter=" ">
206+
<text macro="author-short"/>
207+
<text macro="issued-year"/>
208+
</group>
209+
<text macro="citation-locator"/>
210+
</group>
211+
</layout>
212+
</citation>
213+
<bibliography entry-spacing="0" hanging-indent="true">
214+
<sort>
215+
<key macro="author"/>
216+
<key variable="issued"/>
217+
</sort>
218+
<layout suffix=".">
219+
<text macro="author" suffix="."/>
220+
<text macro="issued" suffix=" "/>
221+
<group delimiter=", ">
222+
<text macro="title"/>
223+
<text macro="locators"/>
224+
</group>
225+
<group delimiter=". " prefix=". ">
226+
<text macro="edition"/>
227+
<text macro="publisher"/>
228+
<text macro="access"/>
229+
</group>
230+
</layout>
231+
</bibliography>
232+
</style>

0 commit comments

Comments
 (0)