aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/scripts/mkpackages
blob: a9c13fd9335f7a7d5ae701cc894036f560087e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# mkpackages -- this script builds the package inclusions for all papers
#
# (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
#
awk 'BEGIN {
	printf("%%\n")
	printf("%% addpackages.tex -- file to add all paper packages files\n")
	printf("%%\n")
	printf("%% (c) 2019 Prof Dr Andreas Müller, Hochschule Rapperswil\n")
	printf("%%\n")
}
{
	printf("\\input{papers/%s/packages.tex}\n", $1)
}' common/paperlist > common/addpackages.tex