forked from citation-style-language/schema
-
Notifications
You must be signed in to change notification settings - Fork 1
/
csl-variables.rnc
98 lines (91 loc) · 1.75 KB
/
csl-variables.rnc
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
## Variables
div {
## All variables
variables =
variables.dates
| variables.names
| variables.numbers
| variables.strings
## Standard variables
variables.standard = variables.numbers | variables.strings
## Date variables
variables.dates =
"accessed"
| "container"
| "event-date"
| "issued"
| "original-date"
| "submitted"
## Name variables
variables.names =
"author"
| "collection-editor"
| "composer"
| "container-author"
| "director"
| "editor"
| "editorial-director"
| "illustrator"
| "interviewer"
| "original-author"
| "recipient"
| "reviewed-author"
| "translator"
## Number variables
variables.numbers =
"chapter-number"
| "collection-number"
| "edition"
| "issue"
| "number"
| "number-of-pages"
| "number-of-volumes"
| "volume"
## String variables
variables.strings =
"abstract"
| "annote"
| "archive"
| "archive_location"
| "archive-place"
| "authority"
| "call-number"
| "citation-label"
| "citation-number"
| "collection-title"
| "container-title"
| "container-title-short"
| "dimensions"
| "DOI"
| "event"
| "event-place"
| "first-reference-note-number"
| "genre"
| "ISBN"
| "ISSN"
| "jurisdiction"
| "keyword"
| "locator"
| "medium"
| "note"
| "original-publisher"
| "original-publisher-place"
| "original-title"
| "page"
| "page-first"
| "PMID"
| "PMCID"
| "publisher"
| "publisher-place"
| "references"
| "reviewed-title"
| "scale"
| "section"
| "source"
| "status"
| "title"
| "title-short"
| "URL"
| "version"
| "year-suffix"
}