diff options
Diffstat (limited to 'elpa/auctex-13.1.3/style/amsbook.el')
-rw-r--r-- | elpa/auctex-13.1.3/style/amsbook.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/elpa/auctex-13.1.3/style/amsbook.el b/elpa/auctex-13.1.3/style/amsbook.el new file mode 100644 index 0000000..c645767 --- /dev/null +++ b/elpa/auctex-13.1.3/style/amsbook.el @@ -0,0 +1,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. |