10 lines
303 B
Bash
Executable File
10 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
latexmk --pdf AlgebraZahlentheorie.tex
|
|
cp AlgebraZahlentheorie.pdf public/AlgebraZahlentheorie.pdf
|
|
|
|
# Korpus für den AZ-Tutor. Muss NACH latexmk laufen: Nummern, Seiten und
|
|
# Querverweise kommen aus .aux/.toc/.synctex.gz und dem frisch gebauten PDF.
|
|
./tools/corpus/build-corpus.sh
|