-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathauthors_data
More file actions
29 lines (24 loc) · 1011 Bytes
/
authors_data
File metadata and controls
29 lines (24 loc) · 1011 Bytes
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
###########################
## DATA FOR AUTHORS_LIST ##
###########################
# (1) Authors
# (2) Institutes
# (3) Groups of authors
# (1) All authors in alphabetical order [NB r"..." = raw string, so that "\'" doesn't become "'"]
# Format: [r"A.N.~Other", "ano", ["A.N.Other@example.com",] "inst1", ..., "instN"],
authors = [
[r"C.D.~Eggs", "cde", "C.D.Eggs@example.com", "ioa cambridge"],
[r"A.B.~Spam", "abs", "cfa", "ioa cambridge"],
]
# (2) Institutes (no particular order) [NB r"..." = raw string, so that "\'" doesn't become "'"]
institutes = {
"cfa":r"Harvard-Smithsonian Center for Astrophysics, 60 Garden Street, Cambridge, MA 02138, USA",
"ioa cambridge":r"Institute of Astronomy, University of Cambridge, Madingley Road, Cambridge CB3 0HA, UK",
}
# (3) Groups of authors (no particular order of groups, or of initials within each group)
groups = {
"key": ["cde", "abs"],
}
# Combinations of groups
# Example: add all all members of group "x" to group "y"
#groups["y"].extend(groups["x"])