]> code.delx.au - gnu-emacs-elpa/blob - packages/auctex-11.86/style/amsopn.el
(debbugs-emacs): New function and modes for listing the Emacs bugs, reading them...
[gnu-emacs-elpa] / packages / auctex-11.86 / style / amsopn.el
1 ;;; amsopn.el --- Style hook for the AMS-LaTeX amsopn package.
2 ;;;
3 ;;; AUTHOR: Carsten Dominik <dominik@strw.leidenuniv.nl>
4
5 ;;; Code:
6
7 (TeX-add-style-hook "amsopn"
8 (function
9 (lambda ()
10 (TeX-add-symbols
11 '("DeclareMathOperator" "Operator (with \\)" "Text")
12 '("DeclareMathOperator*" "Operator (with \\)" "Text")
13 '("operatorname" t)
14 '("operatorname*" t)))))
15
16 (defvar LaTeX-amsopn-package-options '("namelimits" "nonamelimits")
17 "Package options for the amsopn package.")
18
19 ;;; amsopn.el ends here.