3
0
Fork 0
mirror of https://github.com/fsr/ese-spiel synced 2024-11-15 12:23:11 +01:00
ese-spiel/aemter_punkte/buildps.pl
2015-08-06 10:23:43 +02:00

18 lines
341 B
Perl

#!/usr/bin/perl -w
@capt=('Wohnungsamt', 'BAfoeG-Amt', 'Arbeitsamt', 'SLUB', 'StuWe', 'FSR', 'Pruefungsamt');
$oe='\"o';
$ue='\"u';
for (@capt) {
($c=$_)=~s/oe/$oe/geo;
$c=~s/ue/$ue/geo;
print `echo $c > caption.tex`;
print `latex punkte.tex`;
print `dvips punkte.dvi -o punkte_$_.ps`;
}
# ***** end of source *****