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.2.1/style/amsbsy.el

22 lines
447 B
EmacsLisp

;;; amsbsy.el --- Style hook for the AMS-LaTeX amsbsy package. -*- lexical-binding: t; -*-
;;;
;;; AUTHOR: Carsten Dominik <dominik@strw.leidenuniv.nl>
;;; Code:
(require 'tex)
(require 'latex)
(TeX-add-style-hook
"amsbsy"
(lambda ()
(TeX-add-symbols
'("boldsymbol" "Symbol")
'("pmb" "Symbol")))
TeX-dialect)
(defvar LaTeX-amsbsy-package-options nil
"Package options for the amsbsy package.")
;;; amsbsy.el ends here.