-
Notifications
You must be signed in to change notification settings - Fork 0
/
APA.xsl
308 lines (268 loc) · 11.9 KB
/
APA.xsl
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" exclude-result-prefixes="xlink"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xlink="http://www.w3.org/1999/xlink">
<xsl:include href="jats-to-html.xsl"/>
<xsl:include href="citations.xsl"/>
<!-- journal citation -->
<xsl:template match="element-citation[@publication-type='journal']">
<xsl:call-template name="authors" />
<xsl:text> </xsl:text>
<xsl:text>(</xsl:text>
<xsl:apply-templates select="date/year | year" mode="citation"/>
<xsl:text>)</xsl:text>
<xsl:text>. </xsl:text>
<cite itemprop="name">
<xsl:apply-templates select="article-title" mode="citation"/>
<xsl:call-template name="title-punctuation"/>
</cite>
<xsl:text> </xsl:text>
<span>
<xsl:choose>
<xsl:when test="issue">
<!-- if an issue exists, the source and volume are part of it -->
<xsl:apply-templates select="issue" mode="journal-citation"/>
</xsl:when>
<xsl:when test="volume">
<!-- if a volume exists, the source is part of it -->
<xsl:apply-templates select="volume" mode="journal-citation"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="source" mode="journal-citation"/>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:call-template name="pagination"/>
<xsl:call-template name="comment"/>
<xsl:text> </xsl:text>
<xsl:call-template name="citation-url">
<xsl:with-param name="citation" select="."/>
</xsl:call-template>
</span>
</xsl:template>
<!-- book citations -->
<xsl:template match="element-citation[@publication-type='book']">
<xsl:call-template name="authors" />
<xsl:text> </xsl:text>
<xsl:text>(</xsl:text>
<xsl:apply-templates select="date/year | year" mode="citation"/>
<xsl:text>)</xsl:text>
<xsl:text>. </xsl:text>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
<xsl:call-template name="title-punctuation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:text> </xsl:text>
<xsl:apply-templates select="source" mode="book-citation"/>
<span>
<xsl:apply-templates select="edition" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="publisher-name | institution" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="volume" mode="citation"/>
<xsl:text>.</xsl:text>
<xsl:call-template name="pagination"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="pub-id[@pub-id-type='isbn']" mode="citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="citation-url">
<xsl:with-param name="citation" select="."/>
</xsl:call-template>
</span>
</xsl:template>
<!-- conference proceedings -->
<xsl:template match="element-citation[@publication-type='conf-proceedings']
| element-citation[@publication-type='confproc']">
<xsl:call-template name="authors"/>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:apply-templates select="conf-name | source" mode="book-citation"/>
<span>
<xsl:apply-templates select="conf-loc" mode="citation"/>
<xsl:apply-templates select="conf-date" mode="citation"/>
<xsl:apply-templates select="conf-sponsor" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="edition" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="publisher-name | institution" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="volume" mode="citation"/>
<xsl:call-template name="pagination"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="pub-id[@pub-id-type='isbn']" mode="citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="citation-url">
<xsl:with-param name="citation" select="."/>
</xsl:call-template>
</span>
</xsl:template>
<!-- report citations -->
<xsl:template match="element-citation[@publication-type='report']">
<xsl:call-template name="authors"/>
<xsl:text> </xsl:text>
<xsl:text>(</xsl:text>
<xsl:apply-templates select="date/year | year" mode="citation"/>
<xsl:text>)</xsl:text>
<xsl:text>. </xsl:text>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
<xsl:call-template name="title-punctuation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="source" mode="report-citation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:apply-templates select="institution" mode="report-citation"/>
<xsl:apply-templates select="volume" mode="citation"/>
<xsl:call-template name="pagination"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="citation-url">
<xsl:with-param name="citation" select="."/>
</xsl:call-template>
</xsl:template>
<!-- thesis citations -->
<xsl:template match="element-citation[@publication-type='thesis']">
<xsl:call-template name="authors"/>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:apply-templates select="source" mode="thesis-citation"/>
<xsl:apply-templates select="institution" mode="thesis-citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="publication-type-label"/>
</xsl:template>
<!-- working paper (preprint) citations -->
<xsl:template match="element-citation[@publication-type='working-paper']">
<xsl:call-template name="authors"/>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
</cite>
<xsl:apply-templates select="version" mode="citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="publication-type-label"/>
</xsl:template>
<!-- software citations -->
<xsl:template match="element-citation[@publication-type='software']">
<xsl:call-template name="authors"/>
<cite class="article-title">
<!-- the title may be in "data-title" (since JATS 1.1) or "source" -->
<xsl:choose>
<xsl:when test="data-title">
<xsl:apply-templates select="data-title" mode="citation"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="source" mode="citation"/>
</xsl:otherwise>
</xsl:choose>
</cite>
<!-- if the title is in "data-title", "source" is used for the host -->
<xsl:if test="data-title">
<xsl:apply-templates select="source" mode="citation"/>
</xsl:if>
<span>
<xsl:choose>
<xsl:when test="version">
<xsl:apply-templates select="version" mode="citation"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="edition" mode="software-citation"/>
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="publisher-name | institution" mode="citation"/>
</span>
<xsl:call-template name="comment"/>
<xsl:call-template name="publication-type-label"/>
</xsl:template>
<!-- data citations -->
<xsl:template match="element-citation[@publication-type='data']">
<xsl:call-template name="authors"/>
<cite class="article-title">
<xsl:apply-templates select="data-title" mode="citation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:apply-templates select="source" mode="citation"/>
<xsl:apply-templates select="version" mode="citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="publication-type-label"/>
</xsl:template>
<!-- tweet citations -->
<xsl:template match="element-citation[@publication-type='tweet']">
<!-- assuming only one author -->
<xsl:variable name="name-alternatives" select="person-group[@person-group-type='author']/name-alternatives"/>
<span class="citation-authors-year">
<b>
<xsl:apply-templates select="$name-alternatives/name" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:value-of select="concat('(@', $name-alternatives/string-name[@content-type='twitter-username'], ')')"/>
<xsl:text>.</xsl:text>
</b>
<xsl:apply-templates select="year" mode="citation"/>
</span>
<xsl:text> </xsl:text>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
</cite>
<xsl:text> </xsl:text>
<!-- TODO: hyperlink the date instead? -->
<time datetime="{date[@date-type='pub']/@iso-8601-date}">
<xsl:call-template name="format-date">
<xsl:with-param name="value" select="date[@date-type='pub']/@iso-8601-date"/>
<xsl:with-param name="format" select="'g:i A - j M Y'"/>
</xsl:call-template>
</time>
<xsl:text> </xsl:text>
<xsl:call-template name="publication-type-label"/>
</xsl:template>
<!-- "other" citations -->
<xsl:template match="element-citation[@publication-type='other']">
<xsl:call-template name="authors"/>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:apply-templates select="source" mode="citation"/>
<span>
<xsl:apply-templates select="edition" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="publisher-name | institution" mode="citation"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="volume" mode="citation"/>
<xsl:call-template name="pagination"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="pub-id[@pub-id-type='isbn']" mode="citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="citation-url">
<xsl:with-param name="citation" select="."/>
</xsl:call-template>
</span>
</xsl:template>
<!-- other citations (?) -->
<xsl:template match="element-citation">
<xsl:call-template name="authors" />
<xsl:text> </xsl:text>
<xsl:text>(</xsl:text>
<xsl:apply-templates select="date/year | year" mode="citation"/>
<xsl:text>)</xsl:text>
<xsl:text>. </xsl:text>
<cite class="article-title">
<xsl:apply-templates select="article-title" mode="citation"/>
<xsl:call-template name="title-punctuation"/>
</cite>
<xsl:text> </xsl:text>
<xsl:apply-templates select="source" mode="citation"/>
<xsl:call-template name="comment"/>
<xsl:call-template name="citation-url">
<xsl:with-param name="citation" select="."/>
</xsl:call-template>
</xsl:template>
<!-- Other APA style specific templates -->
<xsl:template match="given-names">
<span class="{local-name()}" itemprop="givenName">
<xsl:value-of select="substring(node()|@*,1,1)"/>
<xsl:text>.</xsl:text>
</span>
</xsl:template>
</xsl:stylesheet>