Skip to content
forked from JabRef/jabref

Commit 9cf9ddc

Browse files
authored
Create bioscience.csl (JabRef#4654)
1 parent 277f340 commit 9cf9ddc

File tree

1 file changed

+161
-0
lines changed

1 file changed

+161
-0
lines changed

bioscience.csl

+161
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
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-GB">
3+
<info>
4+
<title>BioScience</title>
5+
<id>http://www.zotero.org/styles/bioscience</id>
6+
<link href="http://www.zotero.org/styles/bioscience" rel="self"/>
7+
<link href="http://www.zotero.org/styles/bulletin-of-marine-science" rel="template"/>
8+
<link href="https://academic.oup.com/bioscience/pages/General_Instructions#MANUSCRIPT%20PREPARATION" rel="documentation"/>
9+
<link href="https://static.primary.prod.gcms.the-infra.com/static/site/bioscience/document/2015-bioscience-style-guide.doc?node=c6b9d18daed88f6f4d7d&amp;version=23527:b7fbc6a6c9646efff583" rel="documentation"/>
10+
<author>
11+
<name>Patrick O'Brien</name>
12+
</author>
13+
<category citation-format="author-date"/>
14+
<category field="biology"/>
15+
<issn>0006-3568</issn>
16+
<eissn>1525-3244</eissn>
17+
<updated>2020-03-30T09:19:37+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+
<macro name="author">
21+
<names variable="author" suffix=". ">
22+
<name delimiter=", " name-as-sort-order="all" sort-separator=" " form="long" initialize-with=""/>
23+
</names>
24+
</macro>
25+
<macro name="editor">
26+
<names variable="editor">
27+
<name and="text" initialize-with="" name-as-sort-order="all" sort-separator=" "/>
28+
<label form="short" prefix=", "/>
29+
</names>
30+
</macro>
31+
<macro name="year">
32+
<date variable="issued" suffix=". ">
33+
<date-part name="year"/>
34+
</date>
35+
</macro>
36+
<macro name="title">
37+
<text variable="title"/>
38+
</macro>
39+
<macro name="pages">
40+
<group delimiter=" ">
41+
<label text-case="capitalize-first" variable="page"/>
42+
<text variable="page"/>
43+
</group>
44+
</macro>
45+
<macro name="publisher">
46+
<group delimiter=", ">
47+
<text variable="publisher"/>
48+
<choose>
49+
<if type="thesis" match="any">
50+
<text variable="publisher-place"/>
51+
</if>
52+
</choose>
53+
</group>
54+
</macro>
55+
<macro name="edition">
56+
<group delimiter=" ">
57+
<number variable="edition" form="ordinal"/>
58+
<label variable="edition" form="short"/>
59+
</group>
60+
</macro>
61+
<macro name="volume">
62+
<group delimiter=" ">
63+
<label variable="volume" form="short"/>
64+
<number variable="volume"/>
65+
</group>
66+
</macro>
67+
<citation disambiguate-add-year-suffix="true" collapse="year" et-al-min="3" et-al-use-first="1">
68+
<sort>
69+
<key macro="year"/>
70+
<key variable="issued" sort="ascending"/>
71+
</sort>
72+
<layout delimiter=", " prefix="(" suffix=")">
73+
<group delimiter=" ">
74+
<names variable="author">
75+
<name and="text" delimiter=" " name-as-sort-order="all" sort-separator=", " form="short"/>
76+
</names>
77+
<date variable="issued">
78+
<date-part name="year" form="long"/>
79+
</date>
80+
</group>
81+
</layout>
82+
</citation>
83+
<bibliography hanging-indent="true">
84+
<sort>
85+
<key macro="author"/>
86+
<key macro="year" sort="ascending"/>
87+
</sort>
88+
<layout suffix=".">
89+
<text macro="author"/>
90+
<text macro="year"/>
91+
<choose>
92+
<if type="book report" match="any">
93+
<group delimiter=". ">
94+
<text macro="title"/>
95+
<text macro="edition"/>
96+
<text macro="publisher"/>
97+
<choose>
98+
<if type="report" match="any">
99+
<group delimiter=" ">
100+
<text value="Report no."/>
101+
<number variable="number"/>
102+
</group>
103+
</if>
104+
</choose>
105+
</group>
106+
</if>
107+
<else-if type="chapter">
108+
<group delimiter=". ">
109+
<text macro="title"/>
110+
<group delimiter=" ">
111+
<text macro="pages"/>
112+
<text term="in"/>
113+
<text macro="editor"/>
114+
</group>
115+
<group delimiter=", ">
116+
<text variable="container-title"/>
117+
<text macro="edition"/>
118+
<text macro="volume"/>
119+
</group>
120+
<text macro="publisher"/>
121+
</group>
122+
</else-if>
123+
<else-if type="thesis">
124+
<group delimiter=". ">
125+
<text macro="title"/>
126+
<text variable="genre"/>
127+
<text macro="publisher"/>
128+
</group>
129+
</else-if>
130+
<else-if type="paper-conference">
131+
<group delimiter=". ">
132+
<text macro="title"/>
133+
<text variable="event" prefix="Paper presented at "/>
134+
<group delimiter=", ">
135+
<date form="text" date-parts="year-month-day" variable="issued"/>
136+
<text variable="publisher-place"/>
137+
</group>
138+
</group>
139+
</else-if>
140+
<else-if type="webpage post post-weblog" match="any">
141+
<group delimiter=". ">
142+
<text macro="title"/>
143+
<text variable="container-title"/>
144+
<group delimiter="; " prefix="(" suffix=")">
145+
<date form="text" variable="accessed"/>
146+
<text variable="URL"/>
147+
</group>
148+
</group>
149+
</else-if>
150+
<else>
151+
<group>
152+
<text macro="title"/>
153+
<text variable="container-title" suffix=" " form="long"/>
154+
<text variable="volume" suffix=": "/>
155+
<text variable="page"/>
156+
</group>
157+
</else>
158+
</choose>
159+
</layout>
160+
</bibliography>
161+
</style>

0 commit comments

Comments
 (0)