aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/scripts/mkbibresources
blob: ecede2bda216057317add2a847338641877b9fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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