Browse Source

make getting latexhandouts easier with function

master
tiynger 1 year ago
parent
commit
d286cccb60
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      .config/aliasrc

+ 4
- 1
.config/aliasrc

@ -26,7 +26,10 @@ sc() { find ~/.config/* ~/.local/bin/* -type f | fzf | xargs -r $EDITOR ;}
sd() { find ~/ownCloud/* -type f | grep ".pdf" | fzf | xargs -r $READER ;}
# git
alias texhandout="cp ~/gitrepos/Tools/LaTeX\ Templates/LaTeX\ Handout/Handout.tex"
texhandout() {
[[ -z $1 ]] && echo "missing argument: filename (no ending)" && return 1
cp ~/gitrepos/Tools/LaTeX\ Templates/LaTeX\ Handout/Handout.tex $1.tex && xelatex $1.tex
}
# grep
alias grep="grep --color=auto"

Loading…
Cancel
Save