Skip to content

Commit 250b900

Browse files
committed
exclude one submission (double, not good)
1 parent ce024b2 commit 250b900

File tree

30 files changed

+34
-14
lines changed

30 files changed

+34
-14
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,3 +301,5 @@ TSWLatexianTemp*
301301
#*Notes.bib
302302

303303
paper.pdf
304+
305+
*.tar.gz

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,8 @@ All authors, regardless of the size of the contributions are mentioned in the au
4242
Tier 1 authors are mentioned before Tier 2 authors using the "equal contribution" marker.
4343

4444
While contributors keep the copyright to their work, they agree to publish the text under **CC-BY 4.0**
45+
46+
### Local builds
47+
48+
The paper should build using `latexmk -pdflatex paper.tex`.
49+

group_composition_plot/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
group_composition_plot.pdf
1+
**/*.pdf
22
/submissions.volume
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1+
# the four main groups
12
./group_composition_plot.py --legend \
23
--outfile group_composition_plot_the_fantastic_four.pdf \
34
submissions/2023-12-06/Friedrich_Schiller_University_Jena_2023-12-06_10-43-44.json \
45
submissions/2023-12-06/Scientific_Software_Center_2023-12-21_13-13-27.json \
56
submissions/2023-12-06/University_of_Reading_2023-12-11_10-18-14.json \
67
submissions/2023-12-06/Princeton_University_2023-11-29_18-33-21.json
78

9+
# all groups (with one (duplicate) left out
810
./group_composition_plot.py --legend \
911
--outfile group_composition_plot_all.pdf \
10-
submissions/2023-12-06/*.json
12+
submissions/good/*.json
1113

12-
find submissions/2023-12-06 -type f -name "*.json" -print0 | \
14+
mkdir -p pdf
15+
find submissions/good -type l -name "*.json" -print0 | \
1316
xargs -0 -P 0 -I{} \
1417
bash -c 'f=$(basename "{}"); ./group_composition_plot.py --outfile pdf/"${f%.json}.pdf" "{}"'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)