summaryrefslogtreecommitdiff
path: root/elpa/auctex-13.1.3/style/amstext.el
blob: 96f1dd129692e5067723b2fb14c039c801c656b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; amstext.el --- Style hook for the AMS-LaTeX amstext package.  -*- lexical-binding: t; -*-
;;;
;;; AUTHOR: Carsten Dominik <dominik@strw.leidenuniv.nl>

;;; Code:

(require 'tex)
(require 'latex)

(TeX-add-style-hook
 "amstext"
 (lambda ()
   (TeX-add-symbols
    '("text" t)))
 TeX-dialect)

(defvar LaTeX-amstext-package-options nil
  "Package options for the amstext package.")

;;; amstext.el ends here.