Skip to content

Commit a224fa9

Browse files
committed
Fix affiliations in metadata
1 parent d806f95 commit a224fa9

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

paper/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Setup Ruby and execute `bundle install` to get whedon
12
OPENJOURNALS_PATH := $(shell bundle info whedon | awk '/Path/{print $$2}')/resources
23

34
draft: paper.pdf

paper/generate_metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def make_date(date):
4949
"title": cm.get("title", ""),
5050
"tags": cm.get("keywords", []),
5151
"authors": [make_author(_) for _ in cm.get("author", [{}])],
52-
"affiliation": make_affiliations(),
52+
"affiliations": make_affiliations(),
5353
"date": make_date(cm.get("dateModified", "")),
5454
"bibliography": "paper.bib",
5555
}

paper/paper.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ authors:
1717
affiliation: 3
1818
- name: Jacopo Canton
1919
affiliation: 4
20-
affiliation:
20+
affiliations:
2121
- name: Stockholm University, Stockholm, Sweden
2222
index: 1
2323
- name: KTH Royal Institute of Technology, Stockholm, Sweden
@@ -29,8 +29,12 @@ affiliation:
2929
date: 16 November 2020
3030
bibliography: paper.bib
3131
---
32+
3233
# Summary
3334

35+
- Describe exadata based on NumPy [@harrisArrayProgrammingNumPy2020]
36+
- Dataset interface based on Xarray [@hoyerXarrayNDLabeled2017]
37+
3438
# Acknowledgements
3539

3640
We acknowledge ...

0 commit comments

Comments
 (0)