mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
872 B
28 lines
872 B
#!/bin/bash
|
|
# copying tex templates
|
|
|
|
[ -z "$2" ] && echo "missing argument: filename (no ending)" && return 1
|
|
|
|
articletemp=~/gitrepos/etc/latextemplates/latex_article/article.tex
|
|
beamertemp=~/gitrepos/etc/latextemplates/latex_beamer/beamer.tex
|
|
exercisetemp=~/gitrepos/etc/latextemplates/latex_exercise_header/header.tex
|
|
handouttemp=~/gitrepos/etc/latextemplates/latex_handout/handout.tex
|
|
|
|
case "$1" in
|
|
a*) cp "$articletemp" $2.tex ;;
|
|
b*) cp "$beamertemp" $2.tex ;;
|
|
e*) cp "$exercisetemp" $2.tex ;;
|
|
h*) cp "$handouttemp" $2.tex ;;
|
|
*) cat << EOF
|
|
|
|
Allowed options
|
|
article NAME get article-template with given NAME
|
|
beamer NAME get beamer-template with given NAME
|
|
exercise NAME get exercise-template with given NAME
|
|
handout NAME get handout-template with given NAME
|
|
|
|
All of these commands can be truncated,
|
|
i.e. \`textemp a\` for \`textemp article`\.
|
|
EOF
|
|
esac
|