EasyPG 1.07 Released
[packages] / xemacs-packages / auctex / style / amsbook.el
1 ;;; amsbook.el --- Style hook for the AMS-LaTeX book document class.
2
3 ;;; Code:
4
5 (TeX-add-style-hook "amsbook"
6  (function
7   (lambda ()
8     (TeX-run-style-hooks "amsmath" "amsthm")
9     (LaTeX-add-environments "abstract")))
10  LaTeX-dialect)
11
12 ;;; amsbook.el ends here.