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

15 行
387B

  1. # -*- mode: snippet -*-
  2. # contributor : Mads D. Kristensen <madsdk@gmail.com>
  3. # key: table
  4. # group: environments
  5. # name : \begin{table} ... \end{table}
  6. # --
  7. \begin{table}[htbp]
  8. \centering
  9. \begin{tabular}{${3:format}}
  10. $0
  11. \end{tabular}
  12. \caption{${1:caption}}
  13. \label{${2:"waiting for reftex-label call..."$(unless yas/modified-p (reftex-label nil 'dont-insert))}}
  14. \end{table}