diff options
author | Boud Roukema <boud@cosmo.torun.pl> | 2020-11-25 17:07:28 +0100 |
---|---|---|
committer | Boud Roukema <boud@cosmo.torun.pl> | 2020-11-25 17:07:28 +0100 |
commit | 5af1406a499ed3936fea303a532015e90370c4b6 (patch) | |
tree | ded2c1202a09c5a18bb819a30d271edbb3bdbdcd /reproduce/analysis/make | |
parent | 8b5473136dc48846bb44b986dfd755c1e3f6f332 (diff) |
Reviewer points 1-15; appendix clickable links
This commit updates "paper.tex" and "peer-review/1-answer.txt"
for the first 15 (out of 59!) reviewer points, excluding
points 2 (not yet done) and 9 (README-hacking.md needs
tidying).
A fix to "reproduce/analysis/make/paper.mk" for the
links in the appendices is also done in this commit (the same
algorithm as for paper.tex is added). The links in the appendices
are not (yet) clickable.
Diffstat (limited to 'reproduce/analysis/make')
-rw-r--r-- | reproduce/analysis/make/paper.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/reproduce/analysis/make/paper.mk b/reproduce/analysis/make/paper.mk index 3bb6a8c..e4eeb59 100644 --- a/reproduce/analysis/make/paper.mk +++ b/reproduce/analysis/make/paper.mk @@ -165,6 +165,13 @@ $(texbdir)/paper.bbl: tex/src/references.tex $(mtexdir)/dependencies-bib.tex \ | sed -e 's/\([^,]\) *\( \|EOLINE\) *\\eprint/\1, \\eprint/g' \ | sed -e 's/\([^,]\) *\( \|EOLINE\) *\\doi/\1, \\doi/g' \ | sed -e 's/EOLINE/\n/g' > paper.bbl + cp appendix.bbl appendix-tmp.bbl \ + && sed -e "s/\'/EOLINE/g" appendix-tmp.bbl \ + | tr -d '\n' \ + | sed -e 's/\([0-9]\)\( \|EOLINE\)}/\1}/g' \ + | sed -e 's/\([^,]\) *\( \|EOLINE\) *\\eprint/\1, \\eprint/g' \ + | sed -e 's/\([^,]\) *\( \|EOLINE\) *\\doi/\1, \\doi/g' \ + | sed -e 's/EOLINE/\n/g' > appendix.bbl # The pre-final run of LaTeX after 'paper.bbl' was created. latex -shell-escape -halt-on-error "$$p"/paper.tex |