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} \column{8cm}
\begin{itemize} \begin{itemize}
\item Protocol suite for online payment services \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 Taxable, efficient, free software
\item Allows for change and refund \item Allows for change and refund
\item Privacy preserving: anonymous and unlinkable payments \item Privacy preserving: anonymous and unlinkable payments

View File

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