Skip to content

Commit 05e7071

Browse files
authored
1 parent 78d771d commit 05e7071

File tree

1 file changed

+196
-0
lines changed

1 file changed

+196
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
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" default-locale="en-US">
3+
<info>
4+
<title>Current Neurology - Aktualności Neurologiczne</title>
5+
<id>http://www.zotero.org/styles/current-neurology-aktualnosci-neurologiczne</id>
6+
<link href="http://www.zotero.org/styles/current-neurology-aktualnosci-neurologiczne" rel="self"/>
7+
<link href="http://www.zotero.org/styles/health-sports-and-rehabilitation-medicine" rel="template"/>
8+
<link href="http://neurologia.com.pl/index.php/instructions-for-authors" rel="documentation"/>
9+
<author>
10+
<name>Patrick O'Brien</name>
11+
</author>
12+
<category citation-format="author-date"/>
13+
<category field="medicine"/>
14+
<issn>2451-0696</issn>
15+
<updated>2022-01-18T11:24:26+00:00</updated>
16+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
17+
</info>
18+
<macro name="author">
19+
<names variable="author">
20+
<name delimiter-precedes-et-al="never" initialize-with="" name-as-sort-order="all" sort-separator=" "/>
21+
<label form="short" prefix=" (" suffix=")"/>
22+
<substitute>
23+
<names variable="editor"/>
24+
<names variable="translator"/>
25+
<text variable="title"/>
26+
</substitute>
27+
</names>
28+
</macro>
29+
<macro name="author-short">
30+
<names variable="author">
31+
<name form="short" and="text" delimiter=", " initialize-with=". "/>
32+
<substitute>
33+
<names variable="editor"/>
34+
<names variable="translator"/>
35+
<text variable="title" form="short"/>
36+
</substitute>
37+
</names>
38+
</macro>
39+
<macro name="editor">
40+
<names variable="editor">
41+
<name initialize-with="" delimiter=", " delimiter-precedes-last="always" name-as-sort-order="all" sort-separator=" "/>
42+
<label form="short" prefix=" (" suffix=")"/>
43+
</names>
44+
</macro>
45+
<macro name="year-date">
46+
<choose>
47+
<if variable="issued">
48+
<date variable="issued">
49+
<date-part name="year"/>
50+
</date>
51+
</if>
52+
<else>
53+
<text term="no date" form="short"/>
54+
</else>
55+
</choose>
56+
</macro>
57+
<macro name="publisher">
58+
<group delimiter=" ">
59+
<group delimiter=", ">
60+
<text variable="publisher-place" text-case="title"/>
61+
<text variable="publisher"/>
62+
</group>
63+
<text macro="year-date"/>
64+
</group>
65+
</macro>
66+
<macro name="edition">
67+
<choose>
68+
<if is-numeric="edition">
69+
<group delimiter=" ">
70+
<number variable="edition" form="ordinal"/>
71+
<text term="edition" form="short"/>
72+
</group>
73+
</if>
74+
<else>
75+
<text variable="edition"/>
76+
</else>
77+
</choose>
78+
</macro>
79+
<macro name="access">
80+
<choose>
81+
<if variable="DOI">
82+
<choose>
83+
<if match="none" variable="page volume">
84+
<text variable="DOI" prefix="DOI: "/>
85+
</if>
86+
</choose>
87+
</if>
88+
<else-if type="webpage post-weblog" match="any">
89+
<choose>
90+
<if variable="URL">
91+
<text variable="URL"/>
92+
<group prefix=" (" suffix=")" delimiter=" ">
93+
<text term="accessed"/>
94+
<date variable="accessed" form="text"/>
95+
</group>
96+
</if>
97+
</choose>
98+
</else-if>
99+
</choose>
100+
</macro>
101+
<macro name="volume">
102+
<group delimiter=" ">
103+
<label text-case="capitalize-first" variable="volume" form="short"/>
104+
<text variable="volume"/>
105+
</group>
106+
</macro>
107+
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-givenname="true" disambiguate-add-year-suffix="true" collapse="year" cite-group-delimiter=", ">
108+
<sort>
109+
<key macro="author"/>
110+
<key macro="year-date" sort="descending"/>
111+
</sort>
112+
<layout prefix="(" suffix=")" delimiter="; ">
113+
<group delimiter=", ">
114+
<text macro="author-short"/>
115+
<text macro="year-date"/>
116+
<group delimiter=" ">
117+
<label variable="locator" form="short"/>
118+
<text variable="locator"/>
119+
</group>
120+
</group>
121+
</layout>
122+
</citation>
123+
<bibliography et-al-min="7" et-al-use-first="3" entry-spacing="0">
124+
<sort>
125+
<key macro="author"/>
126+
<key macro="year-date" sort="descending"/>
127+
</sort>
128+
<layout suffix=".">
129+
<group delimiter=": ">
130+
<text macro="author"/>
131+
<choose>
132+
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
133+
<group delimiter=". ">
134+
<text variable="title"/>
135+
<text macro="volume"/>
136+
<group delimiter=", ">
137+
<text macro="edition"/>
138+
<text macro="publisher"/>
139+
</group>
140+
</group>
141+
</if>
142+
<else-if type="chapter paper-conference" match="any">
143+
<group delimiter=". ">
144+
<text variable="title"/>
145+
<group delimiter=": ">
146+
<group>
147+
<text term="in" text-case="sentence" suffix=": "/>
148+
<text macro="editor"/>
149+
</group>
150+
<text variable="container-title" form="short"/>
151+
</group>
152+
<text macro="edition"/>
153+
<text macro="volume" prefix="vol. "/>
154+
<text macro="publisher"/>
155+
</group>
156+
</else-if>
157+
<else-if type="patent">
158+
<group delimiter=", ">
159+
<group delimiter=". ">
160+
<text variable="title"/>
161+
<text variable="number"/>
162+
</group>
163+
<text macro="year-date"/>
164+
</group>
165+
</else-if>
166+
<else-if type="thesis">
167+
<group delimiter=". ">
168+
<text variable="title"/>
169+
<text variable="genre"/>
170+
<group delimiter=", ">
171+
<text variable="publisher"/>
172+
<text macro="year-date"/>
173+
</group>
174+
</group>
175+
</else-if>
176+
<else>
177+
<group delimiter=": ">
178+
<group delimiter=" ">
179+
<group delimiter=". ">
180+
<text variable="title"/>
181+
<text variable="container-title" form="short" text-case="title" strip-periods="true"/>
182+
</group>
183+
<group delimiter="; ">
184+
<text macro="year-date"/>
185+
<text variable="volume"/>
186+
</group>
187+
</group>
188+
<text variable="page" form="short"/>
189+
</group>
190+
</else>
191+
</choose>
192+
</group>
193+
<text macro="access" prefix=". "/>
194+
</layout>
195+
</bibliography>
196+
</style>

0 commit comments

Comments
 (0)