Skip to content

Commit 42f7491

Browse files
authored
Create geographische-zeitschrift.csl (JabRef#4898)
1 parent a4002a6 commit 42f7491

File tree

1 file changed

+289
-0
lines changed

1 file changed

+289
-0
lines changed

geographische-zeitschrift.csl

+289
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,289 @@
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+
<!-- Polyglot; journal publishes in German and English -->
4+
<info>
5+
<title>Geographische Zeitschrift</title>
6+
<id>http://www.zotero.org/styles/geographische-zeitschrift</id>
7+
<link href="http://www.zotero.org/styles/geographische-zeitschrift" rel="self"/>
8+
<link href="http://www.zotero.org/styles/suburban-zeitschrift-fur-kritische-stadtforschung" rel="template"/>
9+
<link href="http://www.steiner-verlag.de/uploads/media/2019-08_MB_Zitierrichtlinien_GZ_engl.pdf" rel="documentation"/>
10+
<author>
11+
<name>Patrick O'Brien, PhD</name>
12+
</author>
13+
<category citation-format="author-date"/>
14+
<category field="geography"/>
15+
<issn>0016-7479</issn>
16+
<eissn>2365-3124</eissn>
17+
<updated>2020-07-01T08:57:18+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 xml:lang="de">
21+
<terms>
22+
<term name="accessed">letzter Zugriff</term>
23+
<term name="presented at">Paper präsentiert bei der</term>
24+
<term name="anonymous" form="long">Ohne Verfasser</term>
25+
<term name="anonymous" form="short">O.V.</term>
26+
</terms>
27+
</locale>
28+
<macro name="container">
29+
<choose>
30+
<if type="chapter paper-conference" match="any">
31+
<group delimiter=", ">
32+
<group delimiter=": ">
33+
<text term="in" text-case="capitalize-first"/>
34+
<names variable="editor translator" delimiter=", ">
35+
<name delimiter-precedes-last="always" et-al-min="3" et-al-use-first="1" initialize-with="." name-as-sort-order="all"/>
36+
<label form="short" text-case="capitalize-first" prefix=" (" suffix=")"/>
37+
</names>
38+
</group>
39+
<group delimiter=", " suffix=". ">
40+
<text variable="container-title" text-case="title"/>
41+
<text variable="collection-title" text-case="title"/>
42+
</group>
43+
</group>
44+
</if>
45+
<else-if type="book graphic legal_case motion_picture report song" match="any">
46+
<group delimiter=", ">
47+
<text variable="container-title"/>
48+
<text variable="collection-title"/>
49+
</group>
50+
</else-if>
51+
<else-if type="article-journal article-magazine article" match="any">
52+
<group delimiter=" ">
53+
<group delimiter=": ">
54+
<text term="in" text-case="capitalize-first"/>
55+
<group delimiter=", ">
56+
<text variable="container-title"/>
57+
<text variable="collection-title"/>
58+
</group>
59+
</group>
60+
<group delimiter=", ">
61+
<group delimiter="/">
62+
<text variable="volume"/>
63+
<text variable="issue"/>
64+
</group>
65+
<text variable="page"/>
66+
</group>
67+
</group>
68+
</else-if>
69+
<else-if type="bill legislation" match="any">
70+
<group delimiter=" ">
71+
<group delimiter=", ">
72+
<group delimiter=" ">
73+
<text variable="container-title"/>
74+
<text variable="volume"/>
75+
<group delimiter="/">
76+
<text variable="number"/>
77+
<date date-parts="year" form="numeric" variable="issued"/>
78+
</group>
79+
</group>
80+
<text variable="page"/>
81+
</group>
82+
<group delimiter=" ">
83+
<text value="in der Fassung"/>
84+
<text variable="references"/>
85+
</group>
86+
</group>
87+
</else-if>
88+
<else-if type="article-newspaper" match="any">
89+
<group delimiter=", ">
90+
<group delimiter=": ">
91+
<text term="in"/>
92+
<text variable="container-title"/>
93+
</group>
94+
<date variable="issued">
95+
<date-part name="day"/>
96+
<date-part name="month" form="numeric" prefix="."/>
97+
<date-part name="year" prefix="."/>
98+
</date>
99+
</group>
100+
</else-if>
101+
<else>
102+
<group delimiter=", ">
103+
<text variable="container-title"/>
104+
<text variable="collection-title"/>
105+
</group>
106+
</else>
107+
</choose>
108+
</macro>
109+
<macro name="author">
110+
<names variable="author">
111+
<name and="text" initialize-with="." name-as-sort-order="all" sort-separator=", "/>
112+
<label form="short" prefix=" (" suffix=")" text-case="capitalize-first"/>
113+
<substitute>
114+
<names variable="editor"/>
115+
<names variable="translator"/>
116+
<text variable="title"/>
117+
</substitute>
118+
</names>
119+
</macro>
120+
<macro name="author-short">
121+
<names variable="author">
122+
<name form="short" delimiter="/" initialize-with=". "/>
123+
<substitute>
124+
<names variable="editor"/>
125+
<names variable="translator"/>
126+
<group>
127+
<text term="anonymous" form="short"/>
128+
</group>
129+
</substitute>
130+
</names>
131+
</macro>
132+
<macro name="access">
133+
<choose>
134+
<if type="webpage post post-weblog" match="any">
135+
<group delimiter=" ">
136+
<text variable="URL"/>
137+
<date variable="accessed" prefix="(" suffix=")">
138+
<date-part name="day" form="numeric-leading-zeros" suffix="."/>
139+
<date-part name="month" form="numeric-leading-zeros" suffix="."/>
140+
<date-part name="year"/>
141+
</date>
142+
</group>
143+
</if>
144+
</choose>
145+
</macro>
146+
<macro name="title">
147+
<choose>
148+
<if type="report" match="any">
149+
<text variable="title"/>
150+
<group prefix=" (" suffix=")" delimiter=" ">
151+
<text variable="genre"/>
152+
<text variable="number" prefix="Nr. "/>
153+
</group>
154+
</if>
155+
<else-if type="bill book graphic legal_case legislation motion_picture report song speech" match="any">
156+
<group delimiter=". ">
157+
<text variable="title"/>
158+
<text variable="medium"/>
159+
<text macro="edition"/>
160+
</group>
161+
</else-if>
162+
<else-if type="webpage">
163+
<text variable="title"/>
164+
</else-if>
165+
<else>
166+
<text variable="title"/>
167+
</else>
168+
</choose>
169+
</macro>
170+
<macro name="publisher">
171+
<group delimiter=": ">
172+
<text variable="publisher-place"/>
173+
<text variable="publisher"/>
174+
</group>
175+
</macro>
176+
<macro name="event">
177+
<choose>
178+
<if variable="event">
179+
<text term="presented at" text-case="capitalize-first" suffix=" "/>
180+
<text variable="event"/>
181+
</if>
182+
</choose>
183+
</macro>
184+
<macro name="issued">
185+
<choose>
186+
<if variable="issued">
187+
<date variable="issued">
188+
<date-part name="year"/>
189+
</date>
190+
</if>
191+
<else>
192+
<text term="no date" form="short"/>
193+
</else>
194+
</choose>
195+
</macro>
196+
<macro name="edition">
197+
<group delimiter=" ">
198+
<choose>
199+
<if is-numeric="edition">
200+
<number variable="edition" form="ordinal"/>
201+
<text term="edition" form="short"/>
202+
</if>
203+
<else>
204+
<text variable="edition"/>
205+
</else>
206+
</choose>
207+
</group>
208+
</macro>
209+
<macro name="locators">
210+
<choose>
211+
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
212+
<group delimiter=", ">
213+
<text macro="event"/>
214+
<text macro="publisher"/>
215+
</group>
216+
</if>
217+
<else-if type="chapter paper-conference" match="any">
218+
<group delimiter=", ">
219+
<text macro="event"/>
220+
<text macro="publisher"/>
221+
<text macro="pages"/>
222+
</group>
223+
</else-if>
224+
<else-if type="patent">
225+
<text variable="number"/>
226+
</else-if>
227+
<else-if type="thesis" match="any">
228+
<group delimiter=". ">
229+
<text macro="publisher"/>
230+
<text variable="genre"/>
231+
</group>
232+
</else-if>
233+
</choose>
234+
</macro>
235+
<macro name="pages">
236+
<text variable="page"/>
237+
</macro>
238+
<macro name="author-year-title">
239+
<group delimiter=": ">
240+
<group delimiter=" ">
241+
<text macro="author"/>
242+
<group prefix="(" suffix=")">
243+
<text macro="issued"/>
244+
<date date-parts="year" form="text" variable="original-date" prefix="[" suffix="]"/>
245+
</group>
246+
</group>
247+
<text macro="title"/>
248+
</group>
249+
</macro>
250+
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-givenname="true" disambiguate-add-year-suffix="true" collapse="year">
251+
<sort>
252+
<key macro="author"/>
253+
<key macro="issued" sort="descending"/>
254+
</sort>
255+
<layout prefix="(" suffix=")" delimiter="; ">
256+
<group delimiter=", ">
257+
<group delimiter=" ">
258+
<choose>
259+
<if type="legislation" match="any">
260+
<text variable="title-short"/>
261+
</if>
262+
<else>
263+
<text macro="author-short"/>
264+
</else>
265+
</choose>
266+
<text macro="issued"/>
267+
</group>
268+
<text variable="locator"/>
269+
</group>
270+
</layout>
271+
</citation>
272+
<bibliography et-al-min="3" et-al-use-first="1" entry-spacing="0" hanging-indent="true">
273+
<sort>
274+
<key macro="author"/>
275+
<key macro="issued" sort="descending"/>
276+
<key macro="title"/>
277+
</sort>
278+
<layout suffix=".">
279+
<group delimiter=". ">
280+
<text macro="author-year-title"/>
281+
<group>
282+
<text macro="container"/>
283+
<text macro="locators"/>
284+
</group>
285+
</group>
286+
<text macro="access" prefix=". "/>
287+
</layout>
288+
</bibliography>
289+
</style>

0 commit comments

Comments
 (0)