blob: fe66d5e8e8a57d88847124d796f4b11882a89de2 [file] [log] [blame]
Marc Kupietz91175892023-01-21 18:36:12 +01001namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
2
3
4## Variables
5div {
6
7 ## All variables
8 variables = variables.dates | variables.names | variables.standard
9
10 ## Standard variables
11 variables.standard =
12 variables.numbers | variables.strings | variables.titles
13
14 ## Date variables
15 variables.dates =
16 "accessed"
17 | "available-date"
18 | "event-date"
19 | "issued"
20 | "original-date"
21 | "submitted"
22
23 ## Name variables
24 variables.names =
25 "author"
26 | "chair"
27 | "collection-editor"
28 | "compiler"
29 | "composer"
30 | "container-author"
31 | "contributor"
32 | "curator"
33 | "director"
34 | "editor"
35 | "editor-translator"
36 | "editorial-director"
37 | "executive-producer"
38 | "guest"
39 | "host"
40 | "illustrator"
41 | "interviewer"
42 | "narrator"
43 | "organizer"
44 | "original-author"
45 | "performer"
46 | "producer"
47 | "recipient"
48 | "reviewed-author"
49 | "script-writer"
50 | "series-creator"
51 | "translator"
52
53 ## Number variables
54 variables.numbers =
55 "chapter-number"
56 | "citation-number"
57 | "collection-number"
58 | "edition"
59 | "first-reference-note-number"
60 | "issue"
61 | "locator"
62 | "number"
63 | "number-of-pages"
64 | "number-of-volumes"
65 | "page"
66 | "page-first"
67 | "part-number"
68 | "printing-number"
69 | "section"
70 | "supplement-number"
71 | "version"
72 | "volume"
73
74 ## Title variables
75 variables.titles =
76 "collection-title"
77 | "container-title"
78 | "original-title"
79 | "part-title"
80 | "reviewed-title"
81 | "title"
82 | "volume-title"
83 | # Short title forms. Will be removed in CSL 1.1
84 "title-short"
85 | "container-title-short"
86
87 ## String variables
88 variables.strings =
89 "abstract"
90 | "annote"
91 | "archive"
92 | "archive_collection"
93 | "archive_location"
94 | "archive-place"
95 | "authority"
96 | "call-number"
97 | "citation-key"
98 | "citation-label"
99 | "dimensions"
100 | "division"
101 | "DOI"
102 | # Alias for 'event-title'. Deprecated. Will be removed in CSL 1.1.
103 "event"
104 | "event-title"
105 | "event-place"
106 | "genre"
107 | "ISBN"
108 | "ISSN"
109 | "jurisdiction"
110 | "keyword"
111 | "language"
112 | "license"
113 | "medium"
114 | "note"
115 | "original-publisher"
116 | "original-publisher-place"
117 | "PMCID"
118 | "PMID"
119 | "publisher"
120 | "publisher-place"
121 | "references"
122 | "reviewed-genre"
123 | "scale"
124 | "source"
125 | "status"
126 | "URL"
127 | "year-suffix"
128}