Added documentation for new latex utility

This commit is contained in:
Wryn Wagner 2020-03-09 14:23:24 -06:00
parent a8dd03cd70
commit 42450eeb52

View File

@ -1,5 +1,15 @@
#!/bin/zsh
#
# tek() = Local LaTeX Utility
#
# Performs one of the following actions based on first argument:
# - (arg = NO ARGUMENT) Attempt to compile the latex project in the current directory
# - (arg = clean) Clears out LaTeX log files and build files (pdf and dvi)
# - (arg = new) Copy a template to the current directory (prompts for document name)
# - (arg = compile) Attempt to compile the latex project in the current directory
#
function tek() {
case $1 in
clean)