format of output

This commit is contained in:
2022-03-31 22:30:09 +02:00
parent 0d4e33505e
commit 4553272c42
5 changed files with 70 additions and 9 deletions

View File

@ -32,7 +32,12 @@ if [ "$YEAR" = "" ]; then
exit 1
fi
python3.10 hv2cli.py -o AccountStatement -p '{"year":'$YEAR'}' > $YEAR.tex
python3.10 hv2cli.py -o AccountStatement -p '{"year":'$YEAR'}' > ./output/$YEAR.tex
pushd ./output
pdflatex $YEAR.tex
pdflatex $YEAR.tex
pdflatex $YEAR.tex
if [ "$SHOW" = "1" ]; then
@ -43,3 +48,4 @@ if [ "$PRINT" = "1" ]; then
lpr $PRINTER $YEAR.pdf
fi
popd