yatex

changeset 575:777d17c07759 dev

\onecolumn and \twocolumn completions added
author HIROSE Yuuji <yuuji@gentei.org>
date Thu, 17 Oct 2019 09:52:31 +0900
parents 80692d8b8828
children 117a846879bc
files yatex.el yatexadd.el
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/yatex.el	Sat Oct 05 12:46:17 2019 +0900
     1.2 +++ b/yatex.el	Thu Oct 17 09:52:31 2019 +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 Sat May 25 14:46:49 2019 on firestorm
     1.7 +;;; Last modified Thu Oct 17 09:51:11 2019 on firestorm
     1.8  ;;; $Id$
     1.9  ;;; The latest version of this software is always available at;
    1.10  ;;; https://www.yatex.org/
    1.11 @@ -16,7 +16,7 @@
    1.12  
    1.13  ;;; Code:
    1.14  (require 'yatexlib)
    1.15 -(defconst YaTeX-revision-number "1.81.4"
    1.16 +(defconst YaTeX-revision-number "1.81.5"
    1.17    "Revision number of running yatex.el")
    1.18  
    1.19  ;---------- Local variables ----------
    1.20 @@ -452,6 +452,7 @@
    1.21     '(("maketitle") ("makeindex") ("sloppy") ("protect") ("par") ("and")
    1.22       ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline") ("kill")
    1.23       ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow")
    1.24 +     ("onecolumn") ("twocolumn")
    1.25       ("pagebreak") ("nopagebreak") ("tableofcontents")
    1.26       ("newpage") ("clearpage") ("cleardoublepage")
    1.27       ("footnotemark") ("verb") ("verb*")
     2.1 --- a/yatexadd.el	Sat Oct 05 12:46:17 2019 +0900
     2.2 +++ b/yatexadd.el	Thu Oct 17 09:52:31 2019 +0900
     2.3 @@ -1,6 +1,6 @@
     2.4  ;;; yatexadd.el --- YaTeX add-in functions -*- coding: sjis -*-
     2.5  ;;; (c)1991-2019 by HIROSE Yuuji.[yuuji@yatex.org]
     2.6 -;;; Last modified Sat May 25 14:46:41 2019 on firestorm
     2.7 +;;; Last modified Thu Oct 17 09:44:48 2019 on firestorm
     2.8  ;;; $Id$
     2.9  
    2.10  ;;; Code:
    2.11 @@ -2373,6 +2373,10 @@
    2.12     (t nil)))
    2.13  (fset 'YaTeX:it 'YaTeX:em)
    2.14  
    2.15 +;;; twocolumn
    2.16 +(defun YaTeX:twocolumn ()
    2.17 +  (format "[%s]" (YaTeX-read-string-or-skip "One column paragraph: ")))
    2.18 +
    2.19  ;;; -------------------- End of yatexadd --------------------
    2.20  (provide 'yatexadd)
    2.21  ; Local variables: