auctx如何自动补齐?
发表于 : 2008-07-18 7:51
auctex其他的都很强大
但不还不会用自动补齐,请问如何实现?比如打了 \doc 自动补上documentclass
打了begin自动列出一堆环境,谢谢
但不还不会用自动补齐,请问如何实现?比如打了 \doc 自动补上documentclass
打了begin自动列出一堆环境,谢谢
代码: 全选
;;=========hippie-expand补全=========
(global-set-key (kbd "C-=") 'hippie-expand) ;;定义快捷键,我用的 Ctrl加等于号
;;优先列表
(setq hippie-expand-try-functions-list
'(try-expand-dabbrev
try-expand-dabbrev-visible
try-expand-dabbrev-all-buffers
try-expand-dabbrev-from-kill
try-complete-file-name-partially
try-complete-file-name
Try-expand-all-abbrevs
try-expand-list
try-expand-line
try-complete-lisp-symbol-partially
try-complete-lisp-symbol))
代码: 全选
Font list: KEY TEXTFONT MATHFONT
C-a \mathcal{ }
C-b \textbf{ } \mathbf{ }
C-c \textsc{ }
C-e \emph{ }
C-f \textsf{ } \mathsf{ }
TAB \textit{ } \mathit{ }
RET \textmd{ }
C-n \textnormal{ } \mathnormal{ }
C-r \textrm{ } \mathrm{ }
C-s \textsl{ } \mathbb{ }
C-t \texttt{ } \mathtt{ }
C-u \textup{ }
C-d -- delete fontFont list: KEY TEXTFONT MATHFONT