Archived
1
0
Fork 0
This repository has been archived on 2024-10-19. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/code/elpa/auctex-13.1.3/style/amsart.el

17 lines
326 B
EmacsLisp
Raw Normal View History

2022-08-25 17:42:37 +00:00
;;; 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.