From 4752a00668c8de082d467bbdb8ba47f3cb0091b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 4 Jun 2021 16:46:46 +0200 Subject: add basic file infrastructure for special function book --- buch/papers/scripts/mkbibresources | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 buch/papers/scripts/mkbibresources (limited to 'buch/papers/scripts/mkbibresources') diff --git a/buch/papers/scripts/mkbibresources b/buch/papers/scripts/mkbibresources new file mode 100644 index 0000000..ecede2b --- /dev/null +++ b/buch/papers/scripts/mkbibresources @@ -0,0 +1,16 @@ +# +# mkbibresources -- this script builds the addbibresources.tex file +# +# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +# +awk 'BEGIN { + printf("%%\n") + printf("%% addbibresources.tex -- file to add all bib resources\n") + printf("%%\n") + printf("%% (c) 2020 Prof Dr Andreas Müller, Hochschule Rapperswil\n") + printf("%%\n") +} +{ + printf("\\addbibresource{papers/%s/references.bib}\n", $1) +}' common/paperlist > common/addbibresources.tex + -- cgit v1.2.1