Update the script and the alias file to match the rename of assignment_template to memo_template. The 'assignment' type is replaced by 'memo' in new_tex_document; the new_tex_assignment alias becomes new_tex_memo. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
353 B
Bash
10 lines
353 B
Bash
# Aliases for cdsc_tex document creation scripts.
|
|
# Source this file from ~/.bashrc or ~/.zshrc:
|
|
# source ~/tex/cdsc_tex/cdsc_tex_aliases.sh
|
|
|
|
if command -v new_tex_document > /dev/null 2>&1; then
|
|
alias new_tex_memo='new_tex_document memo'
|
|
alias new_knitr_document='new_tex_document knitr'
|
|
alias new_tex_letter='new_tex_document letter'
|
|
fi
|