forked from citation-style-language/styles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso690-author-date.csl
163 lines (163 loc) · 5.1 KB
/
iso690-author-date.csl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" class="in-text">
<info>
<title>ISO-690 (Author-Date format) - UNFINISHED </title>
<id>http://www.zotero.org/styles/iso690-author-date</id>
<link href="http://www.zotero.org/styles/iso690-author-date"/>
<author>
<name>Julian Onions</name>
<email>julian.onions@gmail.com</email>
</author>
<category term="author-date"/>
<category term="generic-base"/>
<updated/>
<summary>The author-date variant of the ISO 690 style</summary>
<link href="http://www.collectionscanada.ca/iso/tc46sc9/standard/690-2e.htm" rel="documentation"/>
</info>
<macro name="editor">
<names variable="editor">
<label form="short" text-case="capitalize-first" suffix=". "/>
<name and="text" delimiter=", "/>
</names>
</macro>
<macro name="series-editor">
<names variable="original-author">
<label form="short" text-case="capitalize-first" suffix=". "/>
<name and="text" delimiter=", "/>
</names>
</macro>
<macro name="anon">
<text term="anonymous" form="short" text-case="capitalize-first"/>
</macro>
<macro name="author">
<names variable="author">
<name and="text" name-as-sort-order="first" sort-separator=", " delimiter=", " delimiter-precedes-last="always"/>
<label form="short" prefix=", " suffix="." text-case="lowercase"/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
<text macro="anon"/>
</substitute>
</names>
</macro>
<macro name="author-short">
<names variable="author">
<name form="short" and="text" delimiter=", "/>
<substitute>
<names variable="editor"/>
<names variable="translator"/>
<text macro="anon"/>
</substitute>
</names>
</macro>
<macro name="access">
<group>
<group>
<text term="cited" text-case="lowercase" suffix=" "/>
<date form="year-month-day"/>
</group>
<text value="Available from world wide web: "/>
<text variable="URL" prefix="<" suffix=">"/>
</group>
</macro>
<macro name="title">
<choose>
<if type="thesis">
<text variable="title"/>
</if>
<else-if type="book">
<text variable="title" font-style="italic"/>
</else-if>
<else>
<text variable="title"/>
</else>
</choose>
</macro>
<macro name="publisher">
<group>
<text variable="publisher-place" prefix="[" suffix="]"/>
<text variable="publisher"/>
</group>
</macro>
<macro name="ref-date">
<date form="year-month-day"/>
</macro>
<macro name="year-date">
<date form="year-month-day"/>
</macro>
<macro name="day-month">
<date form="year-month-day"/>
</macro>
<citation et-al-min="4" et-al-use-first="1" et-al-subsequent-min="6" et-al-subsequent-use-first="1" disambiguate-add-year-suffix="true" disambiguate-add-names="true" disambiguate-add-givenname="true" collapse="year">
<layout delimiter="; ">
<group>
<group>
<text macro="author-short"/>
<text macro="year-date"/>
</group>
<text variable="locator"/>
</group>
</layout>
</citation>
<bibliography hanging-indent="true" et-al-min="6" et-al-use-first="1">
<sort>
<key macro="author"/>
<key variable="title"/>
</sort>
<layout>
<group>
<text macro="author" suffix="."/>
</group>
<choose>
<if type="book">
<group>
<text macro="title" prefix=" " suffix="."/>
<text variable="edition"/>
<text macro="editor" suffix="."/>
<group>
<text macro="publisher"/>
<text macro="ref-date"/>
</group>
</group>
</if>
<else-if type="chapter">
<group>
<text macro="title" prefix=" " suffix="."/>
<group>
<group>
<text term="in" text-case="capitalize-first"/>
<text variable="container-title" font-style="italic"/>
</group>
<text macro="editor" prefix=" "/>
<group>
<text variable="volume" prefix="Vol. " suffix=" of"/>
<text variable="collection-title" font-style="italic"/>
<text macro="series-editor"/>
</group>
<text variable="page"/>
<text macro="publisher" prefix=" "/>
<text macro="ref-date"/>
</group>
</group>
</else-if>
<else>
<group>
<text macro="title" prefix=" "/>
<text macro="editor" prefix=" "/>
</group>
<group>
<text variable="container-title" font-style="italic"/>
<group>
<group>
<text variable="volume"/>
</group>
<text macro="ref-date"/>
<text variable="page"/>
</group>
</group>
</else>
</choose>
<text prefix=" " macro="access" suffix="."/>
</layout>
</bibliography>
</style>