Compare commits

...

2 Commits

Author SHA1 Message Date
198946aad8 2026-02-05T15:07:59 2026-02-05 15:07:57 +01:00
a1c6a9f2a9 2026-02-05T15:07:43 2026-02-05 15:07:42 +01:00
9 changed files with 20 additions and 5 deletions

View File

@@ -1 +0,0 @@
/home/username/.emacs.d/.local/straight/repos/snippets/latex-mode/cite

View File

@@ -1 +0,0 @@
/home/username/.emacs.d/.local/straight/repos/snippets/latex-mode/newglossaryentry

View File

@@ -3,4 +3,4 @@
# key: af # key: af
# uuid: af # uuid: af
# -- # --
\acrfull{$0} \acrfull{$1}$0

View File

@@ -3,4 +3,4 @@
# key: al # key: al
# uuid: al # uuid: al
# -- # --
\acrlong{$0} \acrlong{$1}$0

View File

@@ -3,4 +3,4 @@
# key: as # key: as
# uuid: as # uuid: as
# -- # --
\acrshort{$0} \acrshort{$1}$0

View File

@@ -4,3 +4,4 @@
# uuid: cl # uuid: cl
# -- # --
\chapter{$1} \label{$1} \chapter{$1} \label{$1}
$0

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: cite
# key: c
# uuid: c
# condition: (not (save-restriction (widen) (texmathp)))
# --
\cite{$1} $0

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: newglossaryentry
# key: gl
# uuid: gl
# --
\newglossaryentry{${1}}{
name=${2},
description={${4}}
}