20
0
Files
cdsc_tex/cdsc_tex_aliases.sh
Benjamin Mako Hill 5c9f965fc7 Add a slides type to new_tex_document
Extraction now takes the whole tree and copies the template out with
tar -h, so symlinks into resources/ arrive as real files rather than as
links pointing outside the new document.

new_beamer_presentation is superseded; cdsc_tex_aliases.sh keeps the name
as an alias.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-19 15:48:52 +09:00

11 lines
413 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'
alias new_beamer_presentation='new_tex_document slides'
fi