Skip to content

Commit f33d416

Browse files
authored
Create mary-ann-liebert-harvard.csl (#5957)
* Create mary-ann-liebert-harvard.csl via citationstyles.org form >> forwarded by Sebastian to me. I will also have dependent styles to go with these styles. * Create mary-ann-liebert-vancouver.csl * Update mary-ann-liebert-vancouver.csl * Re-indent CSL styles Co-authored-by: POBrien333 <[email protected]>
1 parent 541fc9b commit f33d416

File tree

2 files changed

+412
-0
lines changed

2 files changed

+412
-0
lines changed

mary-ann-liebert-harvard.csl

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" and="text" demote-non-dropping-particle="sort-only" default-locale="en-US">
3+
<info>
4+
<title>Mary Ann Liebert - Harvard</title>
5+
<title-short>MAL</title-short>
6+
<id>http://www.zotero.org/styles/mary-ann-liebert-harvard</id>
7+
<link href="http://www.zotero.org/styles/mary-ann-liebert-harvard" rel="self"/>
8+
<link href="http://www.zotero.org/styles/iawa-journal" rel="template"/>
9+
<link href="https://home.liebertpub.com/authors/writing-guidelines/151" rel="documentation"/>
10+
<author>
11+
<name>Patrick O'Brien</name>
12+
<email>[email protected]</email>
13+
</author>
14+
<category citation-format="author-date"/>
15+
<category field="generic-base"/>
16+
<updated>2022-03-09T16:56:49+00:00</updated>
17+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
18+
</info>
19+
<locale xml:lang="en">
20+
<terms>
21+
<term name="accessed">last accessed</term>
22+
<term name="available at">available from</term>
23+
</terms>
24+
</locale>
25+
<macro name="editor">
26+
<names variable="editor" delimiter=", ">
27+
<name initialize-with="" name-as-sort-order="all" sort-separator=" "/>
28+
<label form="short" strip-periods="true" prefix=". "/>
29+
</names>
30+
</macro>
31+
<macro name="anon">
32+
<text term="anonymous" text-case="capitalize-first" strip-periods="false"/>
33+
</macro>
34+
<macro name="volume-booklike">
35+
<group delimiter=" ">
36+
<text variable="collection-title" text-case="title"/>
37+
<text variable="collection-number"/>
38+
</group>
39+
</macro>
40+
<macro name="author">
41+
<names variable="author">
42+
<name delimiter-precedes-last="never" initialize-with="" name-as-sort-order="all" sort-separator=" "/>
43+
<label form="short" strip-periods="true" prefix=", (" suffix=")"/>
44+
<substitute>
45+
<names variable="editor"/>
46+
<text macro="anon"/>
47+
</substitute>
48+
</names>
49+
</macro>
50+
<macro name="author-short">
51+
<names variable="author">
52+
<name form="short" initialize-with=". "/>
53+
<substitute>
54+
<names variable="editor"/>
55+
<names variable="translator"/>
56+
<text macro="anon"/>
57+
</substitute>
58+
</names>
59+
</macro>
60+
<macro name="access">
61+
<choose>
62+
<if variable="DOI">
63+
<text variable="DOI" prefix="; doi: "/>
64+
</if>
65+
<else-if type="webpage post post-weblog" match="any">
66+
<group delimiter=" " prefix=". ">
67+
<group delimiter=": ">
68+
<text term="available at" text-case="capitalize-first"/>
69+
<text variable="URL"/>
70+
</group>
71+
<group delimiter=": " prefix="[" suffix="]">
72+
<text term="accessed" text-case="capitalize-first"/>
73+
<date variable="accessed">
74+
<date-part name="month" form="numeric" suffix="/"/>
75+
<date-part name="day" suffix="/"/>
76+
<date-part name="year"/>
77+
</date>
78+
</group>
79+
</group>
80+
</else-if>
81+
</choose>
82+
</macro>
83+
<macro name="title">
84+
<text variable="title" text-case="title"/>
85+
</macro>
86+
<macro name="publisher">
87+
<group delimiter="; ">
88+
<group delimiter=": ">
89+
<text variable="publisher"/>
90+
<text variable="publisher-place"/>
91+
</group>
92+
<text macro="year-date"/>
93+
</group>
94+
</macro>
95+
<macro name="year-date">
96+
<choose>
97+
<if variable="issued">
98+
<date variable="issued">
99+
<date-part name="year"/>
100+
</date>
101+
</if>
102+
<else>
103+
<text term="no date" form="short"/>
104+
</else>
105+
</choose>
106+
</macro>
107+
<macro name="pages">
108+
<text variable="page"/>
109+
</macro>
110+
<macro name="refpages">
111+
<group delimiter=" ">
112+
<label variable="page" form="short"/>
113+
<text variable="page"/>
114+
</group>
115+
</macro>
116+
<macro name="edition">
117+
<choose>
118+
<if is-numeric="edition">
119+
<group delimiter=" ">
120+
<number variable="edition" form="ordinal"/>
121+
<text term="edition" form="short"/>
122+
</group>
123+
</if>
124+
<else>
125+
<text variable="edition" suffix="."/>
126+
</else>
127+
</choose>
128+
</macro>
129+
<macro name="cite-locator">
130+
<group delimiter=" ">
131+
<label variable="locator" form="short"/>
132+
<text variable="locator"/>
133+
</group>
134+
</macro>
135+
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-year-suffix="true" collapse="year">
136+
<sort>
137+
<key macro="author"/>
138+
<key macro="year-date" sort="descending"/>
139+
</sort>
140+
<layout prefix="(" suffix=")" delimiter="; ">
141+
<group delimiter=", ">
142+
<text macro="author-short"/>
143+
<text macro="year-date"/>
144+
<text macro="cite-locator"/>
145+
</group>
146+
</layout>
147+
</citation>
148+
<bibliography et-al-min="4" et-al-use-first="3">
149+
<sort>
150+
<key macro="author"/>
151+
<key macro="year-date"/>
152+
<key variable="title"/>
153+
</sort>
154+
<layout suffix=".">
155+
<group delimiter=". ">
156+
<text macro="author"/>
157+
<choose>
158+
<if type="bill book graphic legal_case legislation motion_picture report song webpage post post-weblog" match="any">
159+
<group delimiter=". " prefix=" ">
160+
<text macro="title" suffix=""/>
161+
<text macro="edition"/>
162+
<text macro="editor" prefix="(" suffix=")"/>
163+
<text macro="volume-booklike"/>
164+
<text variable="genre"/>
165+
<text macro="publisher" suffix="."/>
166+
</group>
167+
</if>
168+
<else-if type="chapter paper-conference" match="any">
169+
<group delimiter=" ">
170+
<group delimiter=". " prefix=" ">
171+
<text macro="title" suffix="."/>
172+
<group delimiter=": ">
173+
<text term="in" text-case="capitalize-first"/>
174+
<text variable="container-title" text-case="title"/>
175+
</group>
176+
<text macro="editor" prefix="(" suffix=")"/>
177+
<text macro="volume-booklike"/>
178+
</group>
179+
<group delimiter="; ">
180+
<text macro="publisher"/>
181+
<text macro="refpages"/>
182+
</group>
183+
</group>
184+
</else-if>
185+
<else-if type="thesis">
186+
<group delimiter=". ">
187+
<text macro="title"/>
188+
<text variable="genre"/>
189+
<text macro="publisher"/>
190+
</group>
191+
</else-if>
192+
<else>
193+
<group delimiter=". ">
194+
<text macro="title"/>
195+
<text macro="editor"/>
196+
<group delimiter=";">
197+
<group delimiter=" ">
198+
<text variable="container-title" form="short" strip-periods="true"/>
199+
<text macro="year-date"/>
200+
</group>
201+
<group delimiter=":">
202+
<group>
203+
<text variable="volume"/>
204+
<text variable="issue" prefix="(" suffix=")"/>
205+
</group>
206+
<text macro="pages" strip-periods="false"/>
207+
</group>
208+
</group>
209+
</group>
210+
</else>
211+
</choose>
212+
</group>
213+
<text macro="access"/>
214+
</layout>
215+
</bibliography>
216+
</style>

0 commit comments

Comments
 (0)