Initial commit

This commit is contained in:
Martin Pander
2020-09-10 09:54:18 +02:00
commit 03c7bc3c59
50 changed files with 7816 additions and 0 deletions

16
tex/setup Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
TEXDIR="$HOME/texmf/tex/latex/local"
for styles in $SCRIPTDIR/*; do
style=${styles##*/}
if [[ $style != "setup" ]]; then
if [[ ! -a "$TEXDIR/$style" ]]; then
ln -s $SCRIPTDIR/$style $TEXDIR/$style
echo $style "symlinked to" $TEXDIR/$style
else
echo "already exists:" $TEXDIR/$style
fi
fi
done