Started laying down the thesis

Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
Marko Korhonen 2020-01-16 16:42:06 +02:00
parent be88bb19fc
commit 5ae8118b34
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
12 changed files with 62 additions and 402 deletions

16
tex/view.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
function finish {
killall entr
}
if [ ! -f main.pdf ]; then
xelatex -shell-escape -8bit main
fi
makeglossaries main
find chapters | entr -cp xelatex -shell-escape -8bit main &
#ls biblio.bib | entr -cp bibtex8 main &
#ls chapters/0abbr.tex | entr -cp makeglossaries main &
zathura >/dev/null 2>&1 main.pdf
trap finish EXIT