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