Skip to content

Commit 53438e7

Browse files
authored
Create european-environment-agency (#7122)
1 parent 6a83ef2 commit 53438e7

File tree

1 file changed

+362
-0
lines changed

1 file changed

+362
-0
lines changed

european-environment-agency.csl

+362
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,362 @@
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" page-range-format="expanded" default-locale="en-GB">
3+
<info>
4+
<title>European Environment Agency</title>
5+
<title-short>EEA</title-short>
6+
<id>http://www.zotero.org/styles/european-environment-agency</id>
7+
<link href="http://www.zotero.org/styles/european-environment-agency" rel="self"/>
8+
<link href="https://www.eea.europa.eu/about-us/documents/eea-writing-manual.pdf" rel="documentation"/>
9+
<category citation-format="author-date"/>
10+
<category field="science"/>
11+
<summary/>
12+
<updated>2024-07-12T12:13:22+00:00</updated>
13+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
14+
</info>
15+
<locale xml:lang="en-GB">
16+
<terms>
17+
<term name="editor" form="short">
18+
<single>ed.</single>
19+
<multiple>eds</multiple>
20+
</term>
21+
<term name="page-range-delimiter">-</term>
22+
<term name="open-quote">‘</term>
23+
<term name="close-quote">’</term>
24+
<term name="open-inner-quote">“</term>
25+
<term name="close-inner-quote">”</term>
26+
<term name="no date">undated</term>
27+
<term name="in press">forthcoming</term>
28+
</terms>
29+
</locale>
30+
<locale xml:lang="en-US">
31+
<terms>
32+
<term name="editor" form="short">
33+
<single>ed.</single>
34+
<multiple>eds</multiple>
35+
</term>
36+
<term name="page-range-delimiter">-</term>
37+
<term name="open-quote">‘</term>
38+
<term name="close-quote">’</term>
39+
<term name="open-inner-quote">“</term>
40+
<term name="close-inner-quote">”</term>
41+
<term name="no date">undated</term>
42+
<term name="in press">forthcoming</term>
43+
</terms>
44+
</locale>
45+
<macro name="editor">
46+
<names variable="editor" delimiter=", ">
47+
<name and="text" initialize-with=". " name-as-sort-order="all"/>
48+
<label form="short" text-case="lowercase" prefix=" (" suffix=")"/>
49+
</names>
50+
</macro>
51+
<macro name="author">
52+
<names variable="author">
53+
<name and="text" delimiter-precedes-et-al="always" delimiter-precedes-last="never" et-al-min="3" et-al-use-first="1" initialize-with=". " name-as-sort-order="all"/>
54+
<label form="short" text-case="lowercase" strip-periods="true" prefix=", " suffix="."/>
55+
<substitute>
56+
<names variable="editor"/>
57+
<text macro="editor"/>
58+
<text macro="title"/>
59+
</substitute>
60+
</names>
61+
</macro>
62+
<macro name="author-short">
63+
<names variable="author">
64+
<name form="short" and="text" et-al-min="3" initialize-with=". "/>
65+
<substitute>
66+
<names variable="editor"/>
67+
<names variable="translator"/>
68+
<text variable="title"/>
69+
</substitute>
70+
</names>
71+
</macro>
72+
<macro name="access">
73+
<choose>
74+
<if variable="URL">
75+
<group delimiter=" ">
76+
<text variable="URL" prefix="(" suffix=")"/>
77+
<group>
78+
<text term="accessed" text-case="lowercase" suffix=" "/>
79+
<date variable="accessed">
80+
<date-part name="day" suffix=" "/>
81+
<date-part name="month" suffix=" "/>
82+
<date-part name="year"/>
83+
</date>
84+
</group>
85+
</group>
86+
</if>
87+
</choose>
88+
</macro>
89+
<macro name="title">
90+
<choose>
91+
<if type="book graphic legal_case motion_picture report song" match="any">
92+
<text variable="title" font-style="italic"/>
93+
</if>
94+
<else>
95+
<text variable="title" quotes="false"/>
96+
</else>
97+
</choose>
98+
</macro>
99+
<macro name="publisher">
100+
<group delimiter=", ">
101+
<text variable="publisher"/>
102+
<text variable="publisher-place"/>
103+
</group>
104+
</macro>
105+
<macro name="year-date">
106+
<group>
107+
<choose>
108+
<if variable="issued">
109+
<date variable="issued">
110+
<date-part name="year"/>
111+
</date>
112+
</if>
113+
<else>
114+
<text term="in press"/>
115+
</else>
116+
</choose>
117+
</group>
118+
</macro>
119+
<macro name="edition">
120+
<choose>
121+
<if is-numeric="edition">
122+
<group delimiter=" ">
123+
<number variable="edition" form="ordinal"/>
124+
<text term="edition" form="short" strip-periods="true"/>
125+
</group>
126+
</if>
127+
<else>
128+
<text variable="edition"/>
129+
</else>
130+
</choose>
131+
</macro>
132+
<macro name="citation-locator">
133+
<choose>
134+
<if match="any" locator="chapter">
135+
<text variable="locator" prefix="Chapter "/>
136+
</if>
137+
<else-if match="any" locator="figure">
138+
<text variable="locator" prefix="Figure "/>
139+
</else-if>
140+
<else-if match="any" locator="page">
141+
<label variable="locator" form="short" plural="contextual" suffix=" "/>
142+
<text variable="locator"/>
143+
</else-if>
144+
<else-if match="any" locator="section">
145+
<text variable="locator" prefix="section "/>
146+
</else-if>
147+
<else>
148+
<text variable="locator"/>
149+
</else>
150+
</choose>
151+
</macro>
152+
<macro name="page">
153+
<label variable="page" form="short" plural="contextual" suffix=" "/>
154+
<text variable="page"/>
155+
</macro>
156+
<macro name="report-data">
157+
<choose>
158+
<if variable="genre">
159+
<text variable="genre"/>
160+
</if>
161+
<else-if variable="collection-title">
162+
<text variable="collection-title"/>
163+
</else-if>
164+
</choose>
165+
</macro>
166+
<macro name="legislation-number">
167+
<choose>
168+
<if variable="container-title">
169+
<text variable="container-title"/>
170+
</if>
171+
<else-if variable="volume">
172+
<text variable="volume"/>
173+
</else-if>
174+
<else-if variable="number">
175+
<text variable="number"/>
176+
</else-if>
177+
</choose>
178+
</macro>
179+
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-year-suffix="true" collapse="year">
180+
<layout prefix="(" suffix=")" delimiter="; ">
181+
<group delimiter=", ">
182+
<group delimiter=" ">
183+
<text macro="author-short" suffix=","/>
184+
<text macro="year-date"/>
185+
</group>
186+
<text macro="citation-locator"/>
187+
</group>
188+
</layout>
189+
</citation>
190+
<bibliography hanging-indent="false" et-al-min="3" et-al-use-first="1">
191+
<sort>
192+
<key macro="author"/>
193+
<key macro="year-date"/>
194+
<key variable="title"/>
195+
</sort>
196+
<layout suffix=".">
197+
<text macro="author" suffix=", "/>
198+
<date variable="issued" suffix=", ">
199+
<date-part name="year"/>
200+
</date>
201+
<choose>
202+
<if type="article-newspaper article-magazine" match="any">
203+
<group delimiter=", ">
204+
<text variable="title" quotes="true"/>
205+
<text variable="container-title" font-style="italic"/>
206+
<date form="text" variable="issued">
207+
<date-part name="day"/>
208+
<date-part name="month"/>
209+
<date-part name="year"/>
210+
</date>
211+
<text variable="publisher-place"/>
212+
</group>
213+
<text macro="access" prefix=" "/>
214+
</if>
215+
<else-if type="article-journal" match="any">
216+
<group delimiter=" " prefix=" " suffix=",">
217+
<text macro="title" quotes="true"/>
218+
<text macro="editor"/>
219+
</group>
220+
<group prefix=" ">
221+
<text variable="container-title" font-style="italic"/>
222+
<group prefix=" ">
223+
<text variable="volume"/>
224+
<text variable="issue" prefix="(" suffix=")"/>
225+
</group>
226+
<text macro="page" prefix=", "/>
227+
<text variable="DOI" prefix=" (DOI: " suffix=")"/>
228+
</group>
229+
</else-if>
230+
<else-if type="bill legislation" match="any">
231+
<group delimiter=" " prefix=" " suffix=".">
232+
<text variable="title"/>
233+
<text macro="legislation-number" prefix=" (" suffix=")"/>
234+
</group>
235+
</else-if>
236+
<else-if type="book" match="any">
237+
<text macro="title" prefix=" " suffix=","/>
238+
<group delimiter=" " prefix=" ">
239+
<text macro="publisher"/>
240+
</group>
241+
</else-if>
242+
<else-if type="chapter" match="any">
243+
<text macro="title" quotes="true" suffix=","/>
244+
<group delimiter=" " prefix=" ">
245+
<text term="in" text-case="lowercase" suffix=":"/>
246+
<text macro="editor" suffix=","/>
247+
<text variable="container-title" font-style="italic" suffix=","/>
248+
<text variable="collection-title" suffix=","/>
249+
<group>
250+
<text macro="publisher"/>
251+
<text macro="page" prefix=", " text-case="lowercase"/>
252+
</group>
253+
</group>
254+
</else-if>
255+
<else-if type="entry-encyclopedia" match="any">
256+
<text macro="title" quotes="true"/>
257+
<group>
258+
<text variable="volume" prefix=" " suffix=" "/>
259+
<text variable="container-title" font-style="italic" suffix=", "/>
260+
<text macro="publisher"/>
261+
</group>
262+
</else-if>
263+
<else-if type="paper-conference" match="any">
264+
<choose>
265+
<if match="all" variable="event container-title">
266+
<group delimiter=", ">
267+
<text variable="title" quotes="true"/>
268+
<text variable="event" prefix="conference paper presented at: "/>
269+
<text variable="event-place"/>
270+
<date form="text" date-parts="year-month-day" variable="issued">
271+
<date-part name="day"/>
272+
<date-part name="month"/>
273+
<date-part name="year"/>
274+
</date>
275+
</group>
276+
</if>
277+
<else>
278+
<group delimiter=", ">
279+
<text variable="title" quotes="true"/>
280+
<text variable="container-title"/>
281+
<text variable="event" prefix="conference paper presented at: "/>
282+
<text variable="event-place"/>
283+
<date form="text" date-parts="year-month-day" variable="issued">
284+
<date-part name="day"/>
285+
<date-part name="month"/>
286+
<date-part name="year"/>
287+
</date>
288+
</group>
289+
</else>
290+
</choose>
291+
</else-if>
292+
<else-if type="report">
293+
<group delimiter=" ">
294+
<group delimiter=", ">
295+
<text macro="title"/>
296+
<group delimiter=" ">
297+
<text macro="report-data"/>
298+
<text variable="number" prefix="No "/>
299+
</group>
300+
<text macro="publisher"/>
301+
</group>
302+
<text macro="access"/>
303+
</group>
304+
</else-if>
305+
<else-if type="article">
306+
<group delimiter=" ">
307+
<group delimiter=", ">
308+
<text macro="title" quotes="true"/>
309+
<text macro="publisher"/>
310+
</group>
311+
<text macro="access"/>
312+
</group>
313+
</else-if>
314+
<else-if type="speech" match="any">
315+
<group delimiter=", ">
316+
<text variable="title" quotes="true"/>
317+
<text variable="event" prefix="presentation given at: "/>
318+
<text variable="event-place"/>
319+
<date form="text" date-parts="year-month-day" variable="issued">
320+
<date-part name="day"/>
321+
<date-part name="month"/>
322+
<date-part name="year"/>
323+
</date>
324+
</group>
325+
</else-if>
326+
<else-if type="webpage post-weblog" match="any">
327+
<group delimiter=" ">
328+
<group delimiter=", ">
329+
<text variable="title" quotes="true"/>
330+
<text variable="container-title"/>
331+
</group>
332+
<text macro="access" prefix=" "/>
333+
</group>
334+
</else-if>
335+
<else>
336+
<group delimiter=", ">
337+
<text macro="title"/>
338+
<choose>
339+
<if match="any" variable="container-title">
340+
<text variable="container-title" suffix="."/>
341+
</if>
342+
</choose>
343+
<text macro="edition"/>
344+
<group delimiter=" ">
345+
<choose>
346+
<if match="any" variable="genre">
347+
<text variable="genre"/>
348+
</if>
349+
<else-if match="any" variable="collection-title">
350+
<text variable="collection-title"/>
351+
</else-if>
352+
</choose>
353+
<text variable="number"/>
354+
<text macro="access"/>
355+
</group>
356+
<text macro="publisher" prefix=" "/>
357+
</group>
358+
</else>
359+
</choose>
360+
</layout>
361+
</bibliography>
362+
</style>

0 commit comments

Comments
 (0)