ebsco-eds 0.0.7.pre → 0.0.8.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ebsco-eds.gemspec +7 -1
- data/lib/ebsco/eds/csl/styles/apa.csl +658 -0
- data/lib/ebsco/eds/csl/styles/chicago-author-date.csl +650 -0
- data/lib/ebsco/eds/csl/styles/modern-language-association.csl +457 -0
- data/lib/ebsco/eds/record.rb +86 -20
- data/lib/ebsco/eds/results.rb +38 -0
- data/lib/ebsco/eds/version.rb +1 -1
- metadata +82 -5
@@ -0,0 +1,457 @@
|
|
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="never">
|
3
|
+
<info>
|
4
|
+
<title>Modern Language Association 7th edition</title>
|
5
|
+
<title-short>MLA</title-short>
|
6
|
+
<id>http://www.zotero.org/styles/modern-language-association</id>
|
7
|
+
<link href="http://www.zotero.org/styles/modern-language-association" rel="self"/>
|
8
|
+
<link href="http://owl.english.purdue.edu/owl/section/2/11/" rel="documentation"/>
|
9
|
+
<author>
|
10
|
+
<name>Ilouise S. Bradford</name>
|
11
|
+
<email>isbradford@gmail.com</email>
|
12
|
+
</author>
|
13
|
+
<contributor>
|
14
|
+
<name>Sarah Ficke</name>
|
15
|
+
<email>sficke@email.unc.edu</email>
|
16
|
+
</contributor>
|
17
|
+
<contributor>
|
18
|
+
<name>Sebastian Karcher</name>
|
19
|
+
<email>karcher@u.northwestern.edu</email>
|
20
|
+
</contributor>
|
21
|
+
<contributor>
|
22
|
+
<name>Christian Werthschulte</name>
|
23
|
+
<email>Christian.Werthschulte@rub.de</email>
|
24
|
+
</contributor>
|
25
|
+
<contributor>
|
26
|
+
<name>Simon Kornblith</name>
|
27
|
+
<email>simon@simonster.com</email>
|
28
|
+
</contributor>
|
29
|
+
<contributor>
|
30
|
+
<name>James Johnston</name>
|
31
|
+
<email>thejamesjohnston@gmail.com</email>
|
32
|
+
</contributor>
|
33
|
+
<category citation-format="author"/>
|
34
|
+
<category field="generic-base"/>
|
35
|
+
<summary>This style adheres to the MLA 7th edition handbook and contains modifications to these types of sources: e-mail, forum posts, interviews, manuscripts, maps, presentations, TV broadcasts, and web pages.</summary>
|
36
|
+
<updated>2014-07-06T20:05:10+00:00</updated>
|
37
|
+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
38
|
+
</info>
|
39
|
+
<locale xml:lang="en">
|
40
|
+
<terms>
|
41
|
+
<term name="month-01" form="short">Jan.</term>
|
42
|
+
<term name="month-02" form="short">Feb.</term>
|
43
|
+
<term name="month-03" form="short">Mar.</term>
|
44
|
+
<term name="month-04" form="short">Apr.</term>
|
45
|
+
<term name="month-05" form="short">May</term>
|
46
|
+
<term name="month-06" form="short">June</term>
|
47
|
+
<term name="month-07" form="short">July</term>
|
48
|
+
<term name="month-08" form="short">Aug.</term>
|
49
|
+
<term name="month-09" form="short">Sept.</term>
|
50
|
+
<term name="month-10" form="short">Oct.</term>
|
51
|
+
<term name="month-11" form="short">Nov.</term>
|
52
|
+
<term name="month-12" form="short">Dec.</term>
|
53
|
+
<term name="volume" form="short">
|
54
|
+
<single>Vol.</single>
|
55
|
+
<multiple>vols</multiple>
|
56
|
+
</term>
|
57
|
+
<term name="edition" form="short">ed</term>
|
58
|
+
<term name="editor" form="verb-short">ed.</term>
|
59
|
+
<term name="translator" form="verb-short">trans.</term>
|
60
|
+
<term name="translator" form="short">trans.</term>
|
61
|
+
</terms>
|
62
|
+
</locale>
|
63
|
+
<macro name="editor-translator">
|
64
|
+
<names variable="editor translator" delimiter=". ">
|
65
|
+
<label form="verb-short" text-case="capitalize-first" suffix=" "/>
|
66
|
+
<name and="text" delimiter=", "/>
|
67
|
+
</names>
|
68
|
+
</macro>
|
69
|
+
<macro name="author">
|
70
|
+
<names variable="author">
|
71
|
+
<name name-as-sort-order="first" and="text" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
|
72
|
+
<label form="short" prefix=", "/>
|
73
|
+
<substitute>
|
74
|
+
<names variable="editor"/>
|
75
|
+
<names variable="translator"/>
|
76
|
+
<text macro="title"/>
|
77
|
+
</substitute>
|
78
|
+
</names>
|
79
|
+
</macro>
|
80
|
+
<macro name="author-short">
|
81
|
+
<names variable="author">
|
82
|
+
<name form="short" and="text" delimiter=", " initialize-with=". "/>
|
83
|
+
<substitute>
|
84
|
+
<names variable="editor"/>
|
85
|
+
<names variable="translator"/>
|
86
|
+
<text macro="title-short"/>
|
87
|
+
</substitute>
|
88
|
+
</names>
|
89
|
+
</macro>
|
90
|
+
<macro name="access">
|
91
|
+
<group delimiter=" ">
|
92
|
+
<date variable="accessed">
|
93
|
+
<date-part name="day" suffix=" "/>
|
94
|
+
<date-part name="month" form="short" suffix=" "/>
|
95
|
+
<date-part name="year"/>
|
96
|
+
</date>
|
97
|
+
</group>
|
98
|
+
</macro>
|
99
|
+
<macro name="issued-full-date">
|
100
|
+
<choose>
|
101
|
+
<if variable="issued">
|
102
|
+
<date variable="issued">
|
103
|
+
<date-part name="day" suffix=" "/>
|
104
|
+
<date-part name="month" form="short" suffix=" " strip-periods="false"/>
|
105
|
+
<date-part name="year"/>
|
106
|
+
</date>
|
107
|
+
</if>
|
108
|
+
<else>
|
109
|
+
<text term="no date" form="short"/>
|
110
|
+
</else>
|
111
|
+
</choose>
|
112
|
+
</macro>
|
113
|
+
<macro name="medium">
|
114
|
+
<choose>
|
115
|
+
<if type="motion_picture">
|
116
|
+
<choose>
|
117
|
+
<if variable="medium">
|
118
|
+
<text variable="medium" prefix=" "/>
|
119
|
+
</if>
|
120
|
+
<else>
|
121
|
+
<text value="Film" prefix=" "/>
|
122
|
+
</else>
|
123
|
+
</choose>
|
124
|
+
</if>
|
125
|
+
<else-if type="broadcast">
|
126
|
+
<choose>
|
127
|
+
<if variable="medium">
|
128
|
+
<text variable="medium" prefix=" "/>
|
129
|
+
</if>
|
130
|
+
<else>
|
131
|
+
<text value="Television" prefix=" "/>
|
132
|
+
</else>
|
133
|
+
</choose>
|
134
|
+
</else-if>
|
135
|
+
<else-if type="manuscript">
|
136
|
+
<text value=""/>
|
137
|
+
</else-if>
|
138
|
+
<else-if type="personal_communication" match="any">
|
139
|
+
<text value="" prefix=" "/>
|
140
|
+
</else-if>
|
141
|
+
<else-if type="speech" match="any">
|
142
|
+
<text value=""/>
|
143
|
+
</else-if>
|
144
|
+
<else-if type="interview">
|
145
|
+
<text variable="medium" prefix=" "/>
|
146
|
+
</else-if>
|
147
|
+
<else-if type="song">
|
148
|
+
<choose>
|
149
|
+
<if variable="medium">
|
150
|
+
<text variable="medium" prefix=" "/>
|
151
|
+
</if>
|
152
|
+
<else>
|
153
|
+
<text value="Audio Recording" prefix=" "/>
|
154
|
+
</else>
|
155
|
+
</choose>
|
156
|
+
</else-if>
|
157
|
+
<else>
|
158
|
+
<choose>
|
159
|
+
<if variable="URL DOI" match="any">
|
160
|
+
<text variable="source" prefix=" " suffix="." font-style="italic"/>
|
161
|
+
<group>
|
162
|
+
<text value="Web." prefix=" "/>
|
163
|
+
</group>
|
164
|
+
<text prefix=" " suffix="." macro="access"/>
|
165
|
+
</if>
|
166
|
+
<else>
|
167
|
+
<text value="Print" prefix=" "/>
|
168
|
+
</else>
|
169
|
+
</choose>
|
170
|
+
</else>
|
171
|
+
</choose>
|
172
|
+
</macro>
|
173
|
+
<macro name="title">
|
174
|
+
<choose>
|
175
|
+
<if type="bill book graphic legal_case legislation manuscript motion_picture report song" match="any">
|
176
|
+
<text variable="title" font-style="italic" text-case="title"/>
|
177
|
+
</if>
|
178
|
+
<else-if type="interview personal_communication" match="any">
|
179
|
+
<text variable="title" text-case="title" quotes="false"/>
|
180
|
+
</else-if>
|
181
|
+
<else>
|
182
|
+
<text variable="title" text-case="title" quotes="true"/>
|
183
|
+
</else>
|
184
|
+
</choose>
|
185
|
+
</macro>
|
186
|
+
<macro name="title-short">
|
187
|
+
<choose>
|
188
|
+
<if type="bill book graphic legal_case legislation manuscript motion_picture report song" match="any">
|
189
|
+
<text variable="title" text-case="title" form="short" font-style="italic"/>
|
190
|
+
</if>
|
191
|
+
<else>
|
192
|
+
<text variable="title" text-case="title" form="short" quotes="true"/>
|
193
|
+
</else>
|
194
|
+
</choose>
|
195
|
+
</macro>
|
196
|
+
<macro name="pages">
|
197
|
+
<choose>
|
198
|
+
<if variable="page">
|
199
|
+
<text variable="page"/>
|
200
|
+
</if>
|
201
|
+
<else-if type="personal_communication interview" match="any">
|
202
|
+
<text value=""/>
|
203
|
+
</else-if>
|
204
|
+
<else>
|
205
|
+
<text value="n. pag"/>
|
206
|
+
</else>
|
207
|
+
</choose>
|
208
|
+
</macro>
|
209
|
+
<macro name="edition">
|
210
|
+
<choose>
|
211
|
+
<if is-numeric="edition">
|
212
|
+
<group delimiter=" ">
|
213
|
+
<number variable="edition" form="ordinal"/>
|
214
|
+
<text term="edition" form="short"/>
|
215
|
+
</group>
|
216
|
+
</if>
|
217
|
+
<else>
|
218
|
+
<text variable="edition"/>
|
219
|
+
</else>
|
220
|
+
</choose>
|
221
|
+
</macro>
|
222
|
+
<macro name="volume">
|
223
|
+
<choose>
|
224
|
+
<if is-numeric="volume">
|
225
|
+
<group delimiter=" ">
|
226
|
+
<text term="volume" form="short" strip-periods="false"/>
|
227
|
+
<number variable="volume"/>
|
228
|
+
</group>
|
229
|
+
</if>
|
230
|
+
<else>
|
231
|
+
<text variable="volume"/>
|
232
|
+
</else>
|
233
|
+
</choose>
|
234
|
+
</macro>
|
235
|
+
<macro name="number-of-volumes-only">
|
236
|
+
<choose>
|
237
|
+
<if variable="volume" match="none">
|
238
|
+
<choose>
|
239
|
+
<if is-numeric="number-of-volumes">
|
240
|
+
<group delimiter=" ">
|
241
|
+
<number variable="number-of-volumes"/>
|
242
|
+
<text term="volume" form="short" plural="true" strip-periods="true"/>
|
243
|
+
</group>
|
244
|
+
</if>
|
245
|
+
<else>
|
246
|
+
<text variable="number-of-volumes"/>
|
247
|
+
</else>
|
248
|
+
</choose>
|
249
|
+
</if>
|
250
|
+
</choose>
|
251
|
+
</macro>
|
252
|
+
<macro name="number-of-volumes-optional">
|
253
|
+
<choose>
|
254
|
+
<if variable="volume">
|
255
|
+
<choose>
|
256
|
+
<if is-numeric="number-of-volumes">
|
257
|
+
<group delimiter=" ">
|
258
|
+
<number variable="number-of-volumes"/>
|
259
|
+
<text term="volume" form="short" plural="true" strip-periods="true"/>
|
260
|
+
</group>
|
261
|
+
</if>
|
262
|
+
<else>
|
263
|
+
<text variable="number-of-volumes"/>
|
264
|
+
</else>
|
265
|
+
</choose>
|
266
|
+
</if>
|
267
|
+
</choose>
|
268
|
+
</macro>
|
269
|
+
<macro name="collection-title">
|
270
|
+
<text variable="collection-title" text-case="title" prefix=" "/>
|
271
|
+
</macro>
|
272
|
+
<macro name="collection-number">
|
273
|
+
<text variable="collection-number" prefix=" " suffix="."/>
|
274
|
+
</macro>
|
275
|
+
<macro name="publisher">
|
276
|
+
<choose>
|
277
|
+
<if variable="publisher">
|
278
|
+
<text variable="publisher"/>
|
279
|
+
</if>
|
280
|
+
<else>
|
281
|
+
<text value="N.p."/>
|
282
|
+
</else>
|
283
|
+
</choose>
|
284
|
+
</macro>
|
285
|
+
<macro name="publisher-year">
|
286
|
+
<group delimiter=", ">
|
287
|
+
<group delimiter=": ">
|
288
|
+
<text variable="publisher-place"/>
|
289
|
+
<text macro="publisher"/>
|
290
|
+
</group>
|
291
|
+
<date variable="issued">
|
292
|
+
<date-part name="year"/>
|
293
|
+
</date>
|
294
|
+
</group>
|
295
|
+
</macro>
|
296
|
+
<citation et-al-min="4" et-al-use-first="1" disambiguate-add-names="true" disambiguate-add-givenname="true">
|
297
|
+
<layout prefix="(" suffix=")" delimiter="; ">
|
298
|
+
<group delimiter=" ">
|
299
|
+
<choose>
|
300
|
+
<if variable="author editor translator" match="any">
|
301
|
+
<group delimiter=", ">
|
302
|
+
<text macro="author-short"/>
|
303
|
+
<choose>
|
304
|
+
<if disambiguate="true">
|
305
|
+
<text macro="title-short"/>
|
306
|
+
</if>
|
307
|
+
</choose>
|
308
|
+
</group>
|
309
|
+
</if>
|
310
|
+
<else>
|
311
|
+
<text macro="title-short"/>
|
312
|
+
</else>
|
313
|
+
</choose>
|
314
|
+
<text variable="locator"/>
|
315
|
+
</group>
|
316
|
+
</layout>
|
317
|
+
</citation>
|
318
|
+
<bibliography hanging-indent="true" et-al-min="4" et-al-use-first="1" line-spacing="2" entry-spacing="0" subsequent-author-substitute="---">
|
319
|
+
<sort>
|
320
|
+
<key macro="author"/>
|
321
|
+
<key variable="title"/>
|
322
|
+
</sort>
|
323
|
+
<layout suffix=".">
|
324
|
+
<text macro="author" suffix="."/>
|
325
|
+
<text macro="title" prefix=" " suffix="."/>
|
326
|
+
<choose>
|
327
|
+
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
|
328
|
+
<text macro="editor-translator" prefix=" " suffix="."/>
|
329
|
+
<text macro="edition" prefix=" " suffix="."/>
|
330
|
+
<text macro="volume" prefix=" " suffix="."/>
|
331
|
+
<text macro="number-of-volumes-only" prefix=" " suffix="."/>
|
332
|
+
<text macro="publisher-year" prefix=" " suffix="."/>
|
333
|
+
</if>
|
334
|
+
<else-if type="chapter paper-conference" match="any">
|
335
|
+
<group>
|
336
|
+
<text variable="container-title" text-case="title" font-style="italic" prefix=" " suffix="."/>
|
337
|
+
<text macro="editor-translator" prefix=" " suffix="."/>
|
338
|
+
<text macro="edition" prefix=" " suffix="."/>
|
339
|
+
<text macro="volume" prefix=" " suffix="."/>
|
340
|
+
<text macro="number-of-volumes-only" prefix=" " suffix="."/>
|
341
|
+
<text macro="publisher-year" prefix=" " suffix="."/>
|
342
|
+
</group>
|
343
|
+
<text variable="page" prefix=" " suffix="."/>
|
344
|
+
</else-if>
|
345
|
+
<else-if type="thesis">
|
346
|
+
<text variable="genre" prefix=" " suffix="."/>
|
347
|
+
<group delimiter=", ">
|
348
|
+
<text macro="publisher" prefix=" "/>
|
349
|
+
<date variable="issued" prefix=" " suffix=".">
|
350
|
+
<date-part name="year"/>
|
351
|
+
</date>
|
352
|
+
</group>
|
353
|
+
<text variable="archive_location" prefix=" " suffix="."/>
|
354
|
+
</else-if>
|
355
|
+
<else-if type="manuscript">
|
356
|
+
<date variable="issued" prefix=" " suffix=".">
|
357
|
+
<date-part name="year"/>
|
358
|
+
</date>
|
359
|
+
<text variable="genre" prefix=" " suffix="."/>
|
360
|
+
<text variable="archive_location" prefix=" " suffix="."/>
|
361
|
+
<text variable="publisher-place" prefix=" "/>
|
362
|
+
</else-if>
|
363
|
+
<else-if type="personal_communication">
|
364
|
+
<date variable="issued" prefix=" " suffix=".">
|
365
|
+
<date-part name="day" suffix=" "/>
|
366
|
+
<date-part name="month" form="short" suffix=" "/>
|
367
|
+
<date-part name="year"/>
|
368
|
+
</date>
|
369
|
+
<choose>
|
370
|
+
<if variable="genre">
|
371
|
+
<text prefix=" " suffix="." variable="genre"/>
|
372
|
+
</if>
|
373
|
+
<else>
|
374
|
+
<text prefix=" " suffix="." value="E-mail"/>
|
375
|
+
</else>
|
376
|
+
</choose>
|
377
|
+
</else-if>
|
378
|
+
<else-if type="map">
|
379
|
+
<text variable="genre" prefix=" " suffix="."/>
|
380
|
+
<text variable="publisher-place" prefix=" " suffix=":"/>
|
381
|
+
<text macro="publisher" prefix=" "/>
|
382
|
+
<date variable="issued" prefix=" " suffix=",">
|
383
|
+
<date-part name="year"/>
|
384
|
+
</date>
|
385
|
+
</else-if>
|
386
|
+
<else-if type="speech">
|
387
|
+
<text variable="event" prefix=" " suffix="."/>
|
388
|
+
<text variable="publisher-place" prefix=" " suffix="."/>
|
389
|
+
<date variable="issued" prefix=" " suffix=".">
|
390
|
+
<date-part name="year"/>
|
391
|
+
</date>
|
392
|
+
<text variable="genre" prefix=" " suffix="."/>
|
393
|
+
</else-if>
|
394
|
+
<else-if type="webpage post-weblog" match="any">
|
395
|
+
<text variable="genre" prefix=" " suffix="."/>
|
396
|
+
<text variable="container-title" font-style="italic" prefix=" " suffix="."/>
|
397
|
+
<group delimiter=", " prefix=" ">
|
398
|
+
<text macro="publisher"/>
|
399
|
+
<text macro="issued-full-date" suffix="."/>
|
400
|
+
</group>
|
401
|
+
</else-if>
|
402
|
+
<else-if type="broadcast">
|
403
|
+
<text variable="container-title" font-style="italic" prefix=" " suffix="."/>
|
404
|
+
<text macro="publisher" prefix=" " suffix=","/>
|
405
|
+
<date variable="issued" prefix=" " suffix=".">
|
406
|
+
<date-part name="day" suffix=" "/>
|
407
|
+
<date-part name="month" form="short" suffix=" " strip-periods="false"/>
|
408
|
+
<date-part name="year"/>
|
409
|
+
</date>
|
410
|
+
</else-if>
|
411
|
+
<else>
|
412
|
+
<group prefix=" " suffix="." delimiter=": ">
|
413
|
+
<group delimiter=" ">
|
414
|
+
<text macro="editor-translator" suffix="."/>
|
415
|
+
<text variable="container-title" font-style="italic"/>
|
416
|
+
<choose>
|
417
|
+
<if type="article-journal">
|
418
|
+
<group delimiter=" ">
|
419
|
+
<group delimiter=".">
|
420
|
+
<text variable="volume"/>
|
421
|
+
<text variable="issue"/>
|
422
|
+
</group>
|
423
|
+
<date variable="issued" prefix="(" suffix="):">
|
424
|
+
<date-part name="year"/>
|
425
|
+
</date>
|
426
|
+
</group>
|
427
|
+
<text macro="pages" prefix=" "/>
|
428
|
+
</if>
|
429
|
+
<else>
|
430
|
+
<group>
|
431
|
+
<date variable="issued">
|
432
|
+
<date-part name="day" suffix=" "/>
|
433
|
+
<date-part name="month" form="short" suffix=" " strip-periods="false"/>
|
434
|
+
<date-part name="year"/>
|
435
|
+
</date>
|
436
|
+
<choose>
|
437
|
+
<if variable="URL DOI" match="any">
|
438
|
+
<text variable="page" prefix=": "/>
|
439
|
+
</if>
|
440
|
+
<else>
|
441
|
+
<text macro="pages" prefix=": "/>
|
442
|
+
</else>
|
443
|
+
</choose>
|
444
|
+
</group>
|
445
|
+
</else>
|
446
|
+
</choose>
|
447
|
+
</group>
|
448
|
+
</group>
|
449
|
+
</else>
|
450
|
+
</choose>
|
451
|
+
<text macro="medium" suffix="."/>
|
452
|
+
<text macro="number-of-volumes-optional" suffix="." prefix=" "/>
|
453
|
+
<text macro="collection-title"/>
|
454
|
+
<text macro="collection-number"/>
|
455
|
+
</layout>
|
456
|
+
</bibliography>
|
457
|
+
</style>
|