Compare commits

...

2 Commits

Author SHA1 Message Date
0621eaee89 -typo fixed 2023-01-02 00:17:50 +01:00
4bc899225c compile fct 2023-01-02 00:17:43 +01:00
2 changed files with 7 additions and 3 deletions

View File

@ -878,7 +878,7 @@ Searching for functions \uncover<2->{with the following signatures}
\column{8cm}
\begin{itemize}
\item Protocol suite for online payment services
\item Based on Chaum's \hyperlink{fr:reminderBlindSignature}{blindly signs}
\item Based on Chaum's \hyperlink{fr:reminderBlindSignature}{blind signatures}
\item Taxable, efficient, free software
\item Allows for change and refund
\item Privacy preserving: anonymous and unlinkable payments

View File

@ -5,16 +5,20 @@ cleanup () {
exit $1
}
compile () {
tectonic $1 || echo 
}
trap cleanup HUP TERM INT
SRC=hip2022.tex
echo -ne "\e[;1H\e[2J"
while true; do
tectonic $SRC || echo 
compile $SRC
FILES=$(echo *.tex)
while inotifywait $FILES ; do
echo -ne "\e[;1H\e[2J"
tectonic $SRC || echo 
compile $SRC
done
done