summaryrefslogtreecommitdiff
path: root/elpa/auctex-13.1.3/style/amsart.el
blob: 7f93f1af3f6b002cd5d93a9644039a51a77893f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; amsart.el --- Style hook for the AMS-LaTeX article document class.  -*- lexical-binding: t; -*-

;;; Code:

(require 'tex)
(require 'latex)

(TeX-add-style-hook
 "amsart"
 (function
  (lambda ()
    (TeX-run-style-hooks "amsmath" "amsthm")
    (LaTeX-add-environments "abstract")))
 TeX-dialect)

;;; amsart.el ends here.