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

;;; Code:

(require 'tex)
(require 'latex)

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

;;; amsbook.el ends here.