yatex

changeset 134:94a1370956a4 dev

`leqq' and `geqq' (in mathsymb)
author yuuji@gentei.org
date Fri, 28 May 2010 15:22:11 +0900
parents e117bfc8ce66
children 5c61fe39f1c4 78803eda24b8
files yatexmth.el yatexpkg.el
diffstat 2 files changed, 12 insertions(+), 6 deletions(-) [+]
line diff
     1.1 --- a/yatexmth.el	Fri May 28 13:06:52 2010 +0900
     1.2 +++ b/yatexmth.el	Fri May 28 15:22:11 2010 +0900
     1.3 @@ -1,8 +1,8 @@
     1.4  ;;; -*- Emacs-Lisp -*-
     1.5  ;;; YaTeX math-mode-specific functions.
     1.6  ;;; yatexmth.el
     1.7 -;;; (c)1993-2006 by HIROSE Yuuji [yuuji@yatex.org]
     1.8 -;;; Last modified Thu May 27 16:33:55 2010 on firestorm
     1.9 +;;; (c)1993-2010 by HIROSE Yuuji [yuuji@yatex.org]
    1.10 +;;; Last modified Fri May 28 15:21:26 2010 on firestorm
    1.11  ;;; $Id$
    1.12  
    1.13  ;;; [Customization guide]
    1.14 @@ -171,8 +171,10 @@
    1.15     ("II"	"amalg"		"II")
    1.16     ;	:
    1.17     ;;relational operators
    1.18 -   ("<"		"leq"		("<\n-"		""))
    1.19 -   (">"		"geq"		(">\n-"		""))
    1.20 +   ("<"		"leq"		("<\n-"		"<\n-"))
    1.21 +   ("=<"	"leqq"		("<\n="		""))
    1.22 +   (">"		"geq"		(">\n-"		">\n-"))
    1.23 +   (">="	"geqq"		(">\n="		""))
    1.24     ("-="	"equiv"		("=\n-"		YaTeX-image-equiv))
    1.25     ("=-"	"equiv"		("=\n-"		YaTeX-image-equiv))
    1.26     ("---"	"equiv"		("=\n-"		YaTeX-image-equiv))
    1.27 @@ -207,7 +209,9 @@
    1.28     ("-<"	"prec"		("-<"		""))
    1.29     ("-<="	"preceq"	("-<\n-"	"\n="))
    1.30     ("<<"	"ll"		("<<"		"s"))
    1.31 +   ("<<"	"lll"		"<<<")
    1.32     (">>"	"gg"		(">>"		"t"))
    1.33 +   (">>>"	"ggg"		">>>")
    1.34     ;	:
    1.35     ;;arrows
    1.36     ("<-"	"leftarrow"	("<-"		""))
     2.1 --- a/yatexpkg.el	Fri May 28 13:06:52 2010 +0900
     2.2 +++ b/yatexpkg.el	Fri May 28 15:22:11 2010 +0900
     2.3 @@ -1,8 +1,8 @@
     2.4  ;;; -*- Emacs-Lisp -*-
     2.5  ;;; YaTeX package manager
     2.6  ;;; yatexpkg.el
     2.7 -;;; (c)2003-2006 by HIROSE, Yuuji [yuuji@yatex.org]
     2.8 -;;; Last modified Sun Dec 24 15:13:29 2006 on firestorm
     2.9 +;;; (c)2003-2010 by HIROSE, Yuuji [yuuji@yatex.org]
    2.10 +;;; Last modified Fri May 28 15:16:04 2010 on firestorm
    2.11  ;;; $Id$
    2.12  
    2.13  (defvar YaTeX-package-ams-envs
    2.14 @@ -31,6 +31,8 @@
    2.15      ("supertabular" (env "supertabular"))
    2.16      ("amsmath"	(env . YaTeX-package-ams-envs)
    2.17       		(section "tag" "tag*"))
    2.18 +    ("amssymb"	(maketitle "leqq" "geqq" "mathbb" "mathfrak"
    2.19 +			   "lll" "ggg")) ;very few.  Please tell us!
    2.20      ("graphicx" (section "includegraphics"
    2.21  			 "rotatebox" "scalebox" "resizebox" "reflectbox")
    2.22       		(option . YaTeX-package-graphics-driver-alist))