# HG changeset patch # User HIROSE Yuuji # Date 1571273551 -32400 # Node ID 777d17c077598b1813a74734c1b32565ff0d37d8 # Parent 80692d8b8828a36ad44e8fe6b8d2c1d423898e05 \onecolumn and \twocolumn completions added diff -r 80692d8b8828 -r 777d17c07759 yatex.el --- a/yatex.el Sat Oct 05 12:46:17 2019 +0900 +++ b/yatex.el Thu Oct 17 09:52:31 2019 +0900 @@ -1,6 +1,6 @@ ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*- ;;; (c)1991-2019 by HIROSE Yuuji.[yuuji@yatex.org] -;;; Last modified Sat May 25 14:46:49 2019 on firestorm +;;; Last modified Thu Oct 17 09:51:11 2019 on firestorm ;;; $Id$ ;;; The latest version of this software is always available at; ;;; https://www.yatex.org/ @@ -16,7 +16,7 @@ ;;; Code: (require 'yatexlib) -(defconst YaTeX-revision-number "1.81.4" +(defconst YaTeX-revision-number "1.81.5" "Revision number of running yatex.el") ;---------- Local variables ---------- @@ -452,6 +452,7 @@ '(("maketitle") ("makeindex") ("sloppy") ("protect") ("par") ("and") ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline") ("kill") ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow") + ("onecolumn") ("twocolumn") ("pagebreak") ("nopagebreak") ("tableofcontents") ("newpage") ("clearpage") ("cleardoublepage") ("footnotemark") ("verb") ("verb*") diff -r 80692d8b8828 -r 777d17c07759 yatexadd.el --- a/yatexadd.el Sat Oct 05 12:46:17 2019 +0900 +++ b/yatexadd.el Thu Oct 17 09:52:31 2019 +0900 @@ -1,6 +1,6 @@ ;;; yatexadd.el --- YaTeX add-in functions -*- coding: sjis -*- ;;; (c)1991-2019 by HIROSE Yuuji.[yuuji@yatex.org] -;;; Last modified Sat May 25 14:46:41 2019 on firestorm +;;; Last modified Thu Oct 17 09:44:48 2019 on firestorm ;;; $Id$ ;;; Code: @@ -2373,6 +2373,10 @@ (t nil))) (fset 'YaTeX:it 'YaTeX:em) +;;; twocolumn +(defun YaTeX:twocolumn () + (format "[%s]" (YaTeX-read-string-or-skip "One column paragraph: "))) + ;;; -------------------- End of yatexadd -------------------- (provide 'yatexadd) ; Local variables: