comparison yatex.el @ 599:e73e41509124 draft dev

Add fleqn from nccmath
author HIROSE Yuuji <yuuji@gentei.org>
date Sun, 16 Oct 2022 20:57:34 +0859
parents 923a6c0183be
children 157aa7974191
comparison
equal deleted inserted replaced
598:ebe2b7a66b9d 599:e73e41509124
1 ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*- 1 ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*-
2 ;;; (c)1991-2020 by HIROSE Yuuji.[yuuji@yatex.org] 2 ;;; (c)1991-2022 by HIROSE Yuuji.[yuuji@yatex.org]
3 ;;; Last modified Thu Sep 29 10:22:07 2022 on firestorm 3 ;;; Last modified Sun Oct 16 20:54:58 2022 on firestorm
4 ;;; $Id$ 4 ;;; $Id$
5 ;;; The latest version of this software is always available at; 5 ;;; The latest version of this software is always available at;
6 ;;; https://www.yatex.org/ 6 ;;; https://www.yatex.org/
7 7
8 ;;; This program is distributed as a free software. You can 8 ;;; This program is distributed as a free software. You can
14 ;;; This software can be treated with: ``The 2-Clause BSD License'' 14 ;;; This software can be treated with: ``The 2-Clause BSD License''
15 ;;; (since 2017-09-09, yatex 1.80). 15 ;;; (since 2017-09-09, yatex 1.80).
16 16
17 ;;; Code: 17 ;;; Code:
18 (require 'yatexlib) 18 (require 'yatexlib)
19 (defconst YaTeX-revision-number "1.82.1" 19 (defconst YaTeX-revision-number "1.82.2"
20 "Revision number of running yatex.el") 20 "Revision number of running yatex.el")
21 21
22 ;---------- Local variables ---------- 22 ;---------- Local variables ----------
23 (defvar YaTeX-prefix "\C-c" 23 (defvar YaTeX-prefix "\C-c"
24 "*Prefix key to call YaTeX functions. 24 "*Prefix key to call YaTeX functions.
360 (defvar user-section-table nil) 360 (defvar user-section-table nil)
361 (defvar tmp-section-table nil) 361 (defvar tmp-section-table nil)
362 (defvar YaTeX-ams-math-begin-alist 362 (defvar YaTeX-ams-math-begin-alist
363 '(("align") ("align*") ("multline") ("multline*") ("gather") ("gather*") 363 '(("align") ("align*") ("multline") ("multline*") ("gather") ("gather*")
364 ("alignat") ("alignat*") ("xalignat") ("xalignat*") 364 ("alignat") ("alignat*") ("xalignat") ("xalignat*")
365 ("xxalignat") ("xxalignat*") ("flalign") ("flalign*") ("equation*"))) 365 ("xxalignat") ("xxalignat*") ("flalign") ("flalign*") ("equation*")
366 ("fleqn")))
366 (defvar YaTeX-ams-math-gathering-alist 367 (defvar YaTeX-ams-math-gathering-alist
367 '(("matrix") ("pmatrix") ("bmatrix") ("Bmatrix") ("vmatrix") ("Vmatrix") 368 '(("matrix") ("pmatrix") ("bmatrix") ("Bmatrix") ("vmatrix") ("Vmatrix")
368 ("split") ("split*") ("aligned") ("aligned*") ("alignedat") ("gathered") 369 ("split") ("split*") ("aligned") ("aligned*") ("alignedat") ("gathered")
369 ("smallmatrix") ("cases") ("subequations"))) 370 ("smallmatrix") ("cases") ("subequations")))
370 ;; Prepare list(not alist) for YaTeX::ref in yatexadd.el 371 ;; Prepare list(not alist) for YaTeX::ref in yatexadd.el

yatex.org