yatex

changeset 456:7bf780961390 dev

Add "mathbb" and so on
author HIROSE Yuuji <yuuji@gentei.org>
date Mon, 06 Mar 2017 17:54:31 +0859
parents bf2497be3ec5
children 428584533eab
files yatex.el yatexadd.el yatexmth.el yatexpkg.el
diffstat 4 files changed, 9 insertions(+), 6 deletions(-) [+]
line diff
     1.1 --- a/yatex.el	Sun Feb 26 11:35:32 2017 +0859
     1.2 +++ b/yatex.el	Mon Mar 06 17:54:31 2017 +0859
     1.3 @@ -1,6 +1,6 @@
     1.4  ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*-
     1.5  ;;; (c)1991-2017 by HIROSE Yuuji.[yuuji@yatex.org]
     1.6 -;;; Last modified Wed Jan 18 07:44:11 2017 on firestorm
     1.7 +;;; Last modified Mon Mar  6 17:40:50 2017 on firestorm
     1.8  ;;; $Id$
     1.9  ;;; The latest version of this software is always available at;
    1.10  ;;; http://www.yatex.org/
    1.11 @@ -296,7 +296,8 @@
    1.12       ("tilde") ("hat") ("check") ("bar") ("dot") ("ddot") ("vec")
    1.13       ("widetilde") ("widehat") ("overline") ("overrightarrow")
    1.14       ;; section types in mathmode
    1.15 -     ("frac" 2) ("sqrt") ("mathrm") ("mathbf") ("mathit")
    1.16 +     ("frac" 2) ("sqrt") ("mathrm") ("mathbf") ("mathit") ("mathbb")
    1.17 +     ("mathscr") ("mathrsfs")
    1.18       ;;cleveref
    1.19       ("cref") ("crefrange") ("cpageref") ("labelcref") ("labelcpageref")
    1.20       ;; beamer
     2.1 --- a/yatexadd.el	Sun Feb 26 11:35:32 2017 +0859
     2.2 +++ b/yatexadd.el	Mon Mar 06 17:54:31 2017 +0859
     2.3 @@ -1,6 +1,6 @@
     2.4  ;;; yatexadd.el --- YaTeX add-in functions -*- coding: sjis -*-
     2.5  ;;; (c)1991-2017 by HIROSE Yuuji.[yuuji@yatex.org]
     2.6 -;;; Last modified Wed Feb 22 08:17:25 2017 on firestorm
     2.7 +;;; Last modified Mon Mar  6 08:52:37 2017 on firestorm
     2.8  ;;; $Id$
     2.9  
    2.10  ;;; Code:
    2.11 @@ -1012,7 +1012,7 @@
    2.12  		    existlabel
    2.13  		    (buffer-substring
    2.14  		     (match-beginning 0)
    2.15 -		     (if (re-search-forward itemsep nil t)
    2.16 +		     (if (re-search-forward itemsep nil 1)
    2.17  			 (progn (goto-char (match-beginning 0))
    2.18  				(skip-chars-backward " \t")
    2.19  				(1- (point)))
     3.1 --- a/yatexmth.el	Sun Feb 26 11:35:32 2017 +0859
     3.2 +++ b/yatexmth.el	Mon Mar 06 17:54:31 2017 +0859
     3.3 @@ -1,7 +1,7 @@
     3.4  ;;; yatexmth.el --- YaTeX math-mode-specific functions -*- coding: sjis -*-
     3.5  ;;; 
     3.6  ;;; (c)1993-2017 by HIROSE Yuuji [yuuji@yatex.org]
     3.7 -;;; Last modified Wed Jan 18 07:40:11 2017 on firestorm
     3.8 +;;; Last modified Mon Mar  6 17:41:31 2017 on firestorm
     3.9  ;;; $Id$
    3.10  
    3.11  ;;; Commentary:
    3.12 @@ -321,6 +321,7 @@
    3.13     ("mi"	"mathit"	"\\mathit{}")
    3.14     ("mr"	"mathrm"	"\\mathrm{}")
    3.15     ("mb"	"mathbf"	"\\mathbf{}")
    3.16 +   ("mB"	"mathbb"	"\\mathbb{}")
    3.17     ("mt"	"mathtt"	"\\mathtt{}")
    3.18     ("ms"	"mathsf"	"\\mathsf{}")
    3.19     ("mc"	"mathcal"	"\\mathcal{}")
     4.1 --- a/yatexpkg.el	Sun Feb 26 11:35:32 2017 +0859
     4.2 +++ b/yatexpkg.el	Mon Mar 06 17:54:31 2017 +0859
     4.3 @@ -1,7 +1,7 @@
     4.4  ;;; yatexpkg.el --- YaTeX package manager -*- coding: sjis -*-
     4.5  ;;; 
     4.6  ;;; (c)2003-2017 by HIROSE, Yuuji [yuuji@yatex.org]
     4.7 -;;; Last modified Tue Jan 17 17:42:47 2017 on firestorm
     4.8 +;;; Last modified Mon Mar  6 17:39:08 2017 on firestorm
     4.9  ;;; $Id$
    4.10  
    4.11  ;;; Code:
    4.12 @@ -35,6 +35,7 @@
    4.13      ("amssymb"	(maketitle "leqq" "geqq" "mathbb" "mathfrak"
    4.14  			   "fallingdotseq" "therefore" "because"
    4.15  			   "lll" "ggg")) ;very few.  Please tell us!
    4.16 +    ("mathrsfs"	(section "mathscr"))
    4.17      ("graphicx" (section "includegraphics"
    4.18  			 "rotatebox" "scalebox" "resizebox" "reflectbox")
    4.19       		(option . YaTeX-package-graphics-driver-alist))