yatex

changeset 581:995282fc8bf5

Add some macros for text-characters
author HIROSE Yuuji <yuuji@gentei.org>
date Sat, 08 Feb 2020 18:22:59 +0900
parents 89a13c59674f
children f4c2dca86202
files yatex.el
diffstat 1 files changed, 7 insertions(+), 5 deletions(-) [+]
line diff
     1.1 --- a/yatex.el	Thu Dec 26 13:27:55 2019 +0859
     1.2 +++ b/yatex.el	Sat Feb 08 18:22:59 2020 +0900
     1.3 @@ -1,6 +1,6 @@
     1.4  ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*-
     1.5 -;;; (c)1991-2019 by HIROSE Yuuji.[yuuji@yatex.org]
     1.6 -;;; Last modified Thu Dec 26 12:46:41 2019 on firestorm
     1.7 +;;; (c)1991-2020 by HIROSE Yuuji.[yuuji@yatex.org]
     1.8 +;;; Last modified Sat Feb  8 18:22:02 2020 on firestorm
     1.9  ;;; $Id$
    1.10  ;;; The latest version of this software is always available at;
    1.11  ;;; https://www.yatex.org/
    1.12 @@ -16,7 +16,7 @@
    1.13  
    1.14  ;;; Code:
    1.15  (require 'yatexlib)
    1.16 -(defconst YaTeX-revision-number "1.82"
    1.17 +(defconst YaTeX-revision-number "1.82.1"
    1.18    "Revision number of running yatex.el")
    1.19  
    1.20  ;---------- Local variables ----------
    1.21 @@ -182,7 +182,7 @@
    1.22  	  YaTeX-sectioning-regexp		;sectioning commands
    1.23  	  "\\|[A-z]*item\\|begin{\\|end{"	;special declaration
    1.24  	  "\\|\\[\\|\\]"
    1.25 -	  "\\|newpage\\b\\|vspace\\b"
    1.26 +	  "\\|newpage\\b\\|vspace\\b\\|par\\b"
    1.27  	  "\\)")
    1.28    "*Paragraph starting regexp of common LaTeX source.  Use this value
    1.29  for YaTeX-uncomment-paragraph.")
    1.30 @@ -192,7 +192,7 @@
    1.31  	  YaTeX-sectioning-regexp		;sectioning commands
    1.32  	  "\\|begin{\\|end{"			;special declaration
    1.33  	  "\\|\\[\\|\\]"
    1.34 -	  "\\|newpage\\b\\|vspace\\b"
    1.35 +	  "\\|newpage\\b\\|vspace\\b\\|par\\b"
    1.36  	  "\\)")
    1.37    "*Paragraph delimiter regexp of common LaTeX source.  Use this value
    1.38  for YaTeX-uncomment-paragraph.")
    1.39 @@ -315,6 +315,7 @@
    1.40       ("cline") ("framebox") ("savebox" 2) ("sbox" 2) ("newsavebox") ("usebox")
    1.41       ("date") ("put") ("ref") ("pageref") ("tabref") ("figref") ("raisebox" 2)
    1.42       ("multicolumn" 3) ("shortstack") ("parbox" 2)
    1.43 +     ("textcircled")
    1.44       ;; for mathmode accent
    1.45       ("tilde") ("hat") ("check") ("bar") ("dot") ("ddot") ("vec")
    1.46       ("widetilde") ("widehat") ("overline") ("overrightarrow")
    1.47 @@ -451,6 +452,7 @@
    1.48    (append
    1.49     '(("maketitle") ("makeindex") ("sloppy") ("protect") ("par") ("and")
    1.50       ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline") ("kill")
    1.51 +     ("textbar") ("textbackslash")
    1.52       ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow")
    1.53       ("onecolumn") ("twocolumn")
    1.54       ("pagebreak") ("nopagebreak") ("tableofcontents")