Compare commits
2 Commits
b55a190875
...
0621eaee89
Author | SHA1 | Date | |
---|---|---|---|
0621eaee89 | |||
4bc899225c |
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user