Skip to content

Commit 60632bc

Browse files
authored
Create horttechnology.csl (#5572)
1 parent e63820b commit 60632bc

File tree

4 files changed

+274
-0
lines changed

4 files changed

+274
-0
lines changed
Lines changed: 223 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
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>American Society for Horticultural Science</title>
5+
<title-short>ASHS</title-short>
6+
<id>http://www.zotero.org/styles/american-society-for-horticultural-science</id>
7+
<link href="http://www.zotero.org/styles/american-society-for-horticultural-science" rel="self"/>
8+
<link href="http://www.zotero.org/styles/revista-de-biologia-tropical" rel="template"/>
9+
<link href="https://aggie-horticulture.tamu.edu/syllabi/423/ASHS%20Publ%20Manual%202002.pdf" rel="documentation"/>
10+
<author>
11+
<name>Patrick O'Brien</name>
12+
</author>
13+
<category citation-format="author-date"/>
14+
<category field="biology"/>
15+
<category field="botany"/>
16+
<updated>2021-07-27T13:34:10+00:00</updated>
17+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
18+
</info>
19+
<macro name="edition">
20+
<choose>
21+
<if is-numeric="edition">
22+
<group delimiter=" ">
23+
<number variable="edition" form="ordinal"/>
24+
<label variable="edition" form="short"/>
25+
</group>
26+
</if>
27+
<else>
28+
<text variable="edition"/>
29+
</else>
30+
</choose>
31+
</macro>
32+
<macro name="container">
33+
<choose>
34+
<if type="chapter paper-conference" match="any">
35+
<text term="in" text-case="capitalize-first" font-style="italic" prefix=". " suffix=" "/>
36+
<names variable="editor translator" delimiter=", " suffix=". ">
37+
<name initialize-with="." delimiter=", " delimiter-precedes-last="never" and="symbol"/>
38+
<label form="short" prefix=" (" suffix=")"/>
39+
</names>
40+
<group delimiter=", ">
41+
<text variable="container-title" text-case="title"/>
42+
<text variable="collection-title" text-case="title"/>
43+
</group>
44+
</if>
45+
<else-if type="bill book graphic legal_case legislation motion_picture report song" match="any">
46+
<group prefix=", " delimiter=", ">
47+
<text variable="container-title"/>
48+
<text variable="collection-title"/>
49+
</group>
50+
</else-if>
51+
<else>
52+
<group prefix=". " delimiter=", ">
53+
<text variable="container-title" form="short"/>
54+
<text variable="collection-title"/>
55+
</group>
56+
</else>
57+
</choose>
58+
</macro>
59+
<macro name="author">
60+
<names variable="author">
61+
<name and="text" delimiter-precedes-last="never" initialize-with="." name-as-sort-order="first"/>
62+
<label form="short" prefix=" (" suffix=")" text-case="capitalize-first"/>
63+
<substitute>
64+
<names variable="editor"/>
65+
<names variable="translator"/>
66+
<text macro="title"/>
67+
</substitute>
68+
</names>
69+
</macro>
70+
<macro name="author-short">
71+
<names variable="author">
72+
<name form="short" and="symbol" delimiter=", " initialize-with=". "/>
73+
<et-al font-style="italic"/>
74+
<substitute>
75+
<names variable="editor"/>
76+
<names variable="translator"/>
77+
<choose>
78+
<if type="bill book graphic legal_case legislation motion_picture report song" match="any">
79+
<text variable="title" form="short" font-style="italic"/>
80+
</if>
81+
<else>
82+
<text variable="title" form="short" quotes="true"/>
83+
</else>
84+
</choose>
85+
</substitute>
86+
</names>
87+
</macro>
88+
<macro name="access">
89+
<choose>
90+
<if type="webpage">
91+
<group>
92+
<text value="URL" suffix=" "/>
93+
<text variable="URL"/>
94+
</group>
95+
</if>
96+
</choose>
97+
</macro>
98+
<macro name="title">
99+
<choose>
100+
<if type="chapter paper-conference" match="any">
101+
<group delimiter=", ">
102+
<text variable="title"/>
103+
<group>
104+
<label variable="page" form="short" suffix=" " plural="never"/>
105+
<text variable="page"/>
106+
</group>
107+
</group>
108+
</if>
109+
<else-if type="webpage">
110+
<text variable="title"/>
111+
<text value="WWW Document" prefix=" [" suffix="]"/>
112+
</else-if>
113+
<else>
114+
<text variable="title"/>
115+
</else>
116+
</choose>
117+
</macro>
118+
<macro name="publisher">
119+
<choose>
120+
<if type="report thesis" match="any">
121+
<group delimiter=", ">
122+
<text variable="publisher"/>
123+
<text variable="publisher-place"/>
124+
</group>
125+
</if>
126+
<else>
127+
<group delimiter=", ">
128+
<text variable="publisher"/>
129+
<text variable="publisher-place"/>
130+
</group>
131+
</else>
132+
</choose>
133+
</macro>
134+
<macro name="event">
135+
<choose>
136+
<if variable="event">
137+
<text term="presented at" text-case="capitalize-first" suffix=" "/>
138+
<text variable="event"/>
139+
</if>
140+
</choose>
141+
</macro>
142+
<macro name="issued">
143+
<choose>
144+
<if variable="issued">
145+
<date variable="issued">
146+
<date-part name="year"/>
147+
</date>
148+
</if>
149+
<else-if variable="accessed">
150+
<choose>
151+
<if type="webpage">
152+
<date variable="accessed">
153+
<date-part name="year"/>
154+
</date>
155+
</if>
156+
<else>
157+
<text term="no date" form="short"/>
158+
</else>
159+
</choose>
160+
</else-if>
161+
<else>
162+
<text term="no date" form="short"/>
163+
</else>
164+
</choose>
165+
</macro>
166+
<macro name="locators">
167+
<choose>
168+
<if type="article-journal article-magazine article-newspaper" match="any">
169+
<group delimiter=":" prefix=" ">
170+
<text variable="volume"/>
171+
<text variable="page"/>
172+
</group>
173+
</if>
174+
<else-if type="bill book graphic legal_case legislation motion_picture report song thesis" match="any">
175+
<group delimiter=", " prefix=". ">
176+
<group>
177+
<text variable="genre"/>
178+
<text variable="number" prefix=" No. "/>
179+
</group>
180+
<text macro="edition"/>
181+
<text macro="event"/>
182+
<text macro="publisher"/>
183+
</group>
184+
</else-if>
185+
<else-if type="chapter paper-conference" match="any">
186+
<group delimiter=", " prefix=". ">
187+
<text macro="event"/>
188+
<text macro="publisher"/>
189+
</group>
190+
</else-if>
191+
</choose>
192+
</macro>
193+
<citation et-al-min="3" et-al-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" collapse="year">
194+
<sort>
195+
<key macro="issued"/>
196+
<key macro="author"/>
197+
</sort>
198+
<layout prefix="(" suffix=")" delimiter=", ">
199+
<group delimiter=" ">
200+
<text macro="author-short"/>
201+
<text macro="issued"/>
202+
</group>
203+
</layout>
204+
</citation>
205+
<bibliography hanging-indent="true" entry-spacing="0" line-spacing="1">
206+
<sort>
207+
<key macro="author"/>
208+
<key macro="issued" sort="ascending"/>
209+
</sort>
210+
<layout>
211+
<group suffix=".">
212+
<text macro="author"/>
213+
<text macro="issued" prefix=". " suffix=". "/>
214+
<group>
215+
<text macro="title"/>
216+
<text macro="container"/>
217+
</group>
218+
<text macro="locators"/>
219+
</group>
220+
<text macro="access" prefix=". "/>
221+
</layout>
222+
</bibliography>
223+
</style>

dependent/hortscience.csl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" default-locale="en-US">
3+
<info>
4+
<title>HortScience</title>
5+
<id>http://www.zotero.org/styles/hortscience</id>
6+
<link href="http://www.zotero.org/styles/hortscience" rel="self"/>
7+
<link href="http://www.zotero.org/styles/american-society-for-horticultural-science" rel="independent-parent"/>
8+
<link href="https://aggie-horticulture.tamu.edu/syllabi/423/ASHS%20Publ%20Manual%202002.pdf" rel="documentation"/>
9+
<category citation-format="author-date"/>
10+
<category field="biology"/>
11+
<category field="botany"/>
12+
<issn>0018-5345</issn>
13+
<eissn>2327-9834</eissn>
14+
<updated>2021-07-27T13:34:10+00:00</updated>
15+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
16+
</info>
17+
</style>

dependent/horttechnology.csl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" default-locale="en-US">
3+
<info>
4+
<title>HortTechnology</title>
5+
<id>http://www.zotero.org/styles/horttechnology</id>
6+
<link href="http://www.zotero.org/styles/horttechnology" rel="self"/>
7+
<link href="http://www.zotero.org/styles/american-society-for-horticultural-science" rel="independent-parent"/>
8+
<link href="https://aggie-horticulture.tamu.edu/syllabi/423/ASHS%20Publ%20Manual%202002.pdf" rel="documentation"/>
9+
<category citation-format="author-date"/>
10+
<category field="biology"/>
11+
<category field="botany"/>
12+
<issn>1063-0198</issn>
13+
<eissn>1943-7714</eissn>
14+
<updated>2021-07-27T13:34:10+00:00</updated>
15+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
16+
</info>
17+
</style>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" default-locale="en-US">
3+
<info>
4+
<title>Journal of the American Society for Horticultural Science</title>
5+
<id>http://www.zotero.org/styles/journal-of-the-american-society-for-horticultural-science</id>
6+
<link href="http://www.zotero.org/styles/journal-of-the-american-society-for-horticultural-science" rel="self"/>
7+
<link href="http://www.zotero.org/styles/american-society-for-horticultural-science" rel="independent-parent"/>
8+
<link href="https://aggie-horticulture.tamu.edu/syllabi/423/ASHS%20Publ%20Manual%202002.pdf" rel="documentation"/>
9+
<category citation-format="author-date"/>
10+
<category field="biology"/>
11+
<category field="botany"/>
12+
<issn>0003-1062</issn>
13+
<eissn>2327-9788</eissn>
14+
<updated>2021-07-27T13:34:10+00:00</updated>
15+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
16+
</info>
17+
</style>

0 commit comments

Comments
 (0)