aboutsummaryrefslogtreecommitdiff
path: root/make
blob: 5a91e84ed93450ae38e4183f1c19c1bed4ff1878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

export orig="$(pwd)"
export dir="$(dirname $0)"
create(){
mkdir imgs 
cd imgs
python3 ../data.py img || python ../data.py img || echo "You must install python3"
cd ..
mkdir graph
cd graph
python3 ../data.py depwid || python ../data.py depwid
python3 ../data.py nei || python ../data.py nei
cd ..
mkdir outputs
cd document
cp ../format.orig.tex ../format.tex
pdftex report.tex || echo "You must install \`pdftex\` (MacTeX, TeXLive, MikTeX, etc)"
mv pageno.tex ..
mv pageno2.tex ..
mv report.pdf ../outputs/report-double.pdf
sed ../format.orig.tex -e 's/\\baselineskip=24pt/\\baselineskip=14pt/g' >../format.tex
pdftex report.tex
mv report.pdf ../outputs/report-single.pdf
cd ..
pdftex pics.tex
mv pics.pdf outputs/pics.pdf
pdftk outputs/report-double.pdf cat $(expr $(cat pageno.tex) + 1)-$(expr $(cat pageno2.tex) + 1) output outputs/graphs-tables.pdf
rm *.log
rm document/report.log
cp assets/* outputs/
qrencode https://hrhr.dev/r -o outputs/qr.png || echo "For QR code, install \`qrencode\`"
qrencode https://git.hrhr.dev/scifair -o outputs/qr-source.png
cd poster
pdftex document.tex
mv document.pdf ../outputs/posterboard.pdf
cd ..
rm format.tex pageno.tex document/pageno.tex pageno2.tex document/pageno2.tex document.log
}

cd $dir
create 2>/dev/null
cd $orig