Emacs personal configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
350B

  1. # -*- mode: snippet -*-
  2. # contributor: Mads D. Kristensen <madsdk@gmail.com>
  3. # key: eqs
  4. # group: math
  5. # name: \begin{align} ... \end{align}
  6. # --
  7. \begin{${1:$$(yas/choose-value '("align" "align*" "multline" "gather" "subequations"))}}
  8. \label{${2:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
  9. $0
  10. \end{$1}