annotate yatex.el @ 69:807c1e7e68b7

yahtml-escape-chars-region Translate <>"& to entity reference. And inverse translation to above. yahtml-translate-hyphens-when-comment-region yahtml-prefer-upcase-attributes Inquire .htaccess file to determine the file-coding-system. Completions for StyleSheet. ---yahtml--- Auto insert of \), \|, \] after corresponding \(, \| \]. [prefix] c for \right\left parens.
author yuuji
date Thu, 15 Jul 1999 04:58:26 +0000
parents 0eb6997bee16
children 44e3a5e1e883
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1 ;;; -*- Emacs-Lisp -*-
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2 ;;; Yet Another tex-mode for emacs - //–ì’¹//
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
3 ;;; yatex.el rev. 1.67
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
4 ;;; (c )1991-1999 by HIROSE Yuuji.[yuuji@gentei.org]
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
5 ;;; Last modified Tue Jul 13 14:20:45 1999 on firestorm
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
6 ;;; $Id$
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
7 ;;; The latest version of this software is always available at;
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
8 ;;; http://www.yatex.org/
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
9
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
10 ;; This program is free software; you can redistribute it and/or modify
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
13 ;; any later version.
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
14
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
15 ;; This program is distributed in the hope that it will be useful,
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
18 ;; GNU General Public License for more details.
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
19
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
20 ;; You should have received a copy of the GNU General Public License
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
21 ;; along with this program; see the file COPYING. If not, write to the
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
22 ;; Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
23 ;; 02111-1307, USA.
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
24
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
25 (require 'comment)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
26 (require 'yatexlib)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
27 (defconst YaTeX-revision-number "1.67"
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
28 "Revision number of running yatex.el")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
29
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
30 ;---------- Local variables ----------
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
31 (defvar YaTeX-prefix "\C-c"
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
32 "*Prefix key to call YaTeX functions.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
33 You can select favorite prefix key by setq in your ~/.emacs.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
34
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
35 (defvar YaTeX-environment-indent 1
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
36 "*Indentation depth at column width in LaTeX environments.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
37
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
38 (defvar YaTeX-fill-prefix nil
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
39 "*fill-prefix used for auto-fill-mode.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
40 The default value is nil.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
41
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
42 (defvar YaTeX-fill-column 72
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
43 "*fill-column used for auto-fill-mode.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
44
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
45 (defvar YaTeX-comment-prefix "%"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
46 "TeX comment prefix.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
47
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
48 (defvar YaTeX-current-position-register ?3
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
49 "*Position register to keep where the last completion was done.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
50 All of YaTeX completing input store the current position into
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
51 the register YaTeX-current-position-register. So every time you
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
52 make a trip to any other part of text other than you are writing, you can
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
53 return to the editing paragraph by calling register-to-point with argument
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
54 YaTeX-current-position-register.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
55
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
56 ;;(defvar YaTeX-tmp-dic-unit 'main-file
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
57 ;; "*Default switching unit of temporary dictionary.
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
58 ;;There are two switching unit:
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
59 ;;'main-file : switch tmp-dic according to main-file directory.
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
60 ;;'directory : switch tmp-dic dir by dir."
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
61 ;;)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
62 (defvar tex-command (if YaTeX-japan "jlatex" "latex")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
63 "*Default command for typesetting LaTeX text.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
64
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
65 (defvar bibtex-command (if YaTeX-japan "jbibtex" "bibtex")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
66 "*Default command of BibTeX.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
67
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
68 (defvar dvi2-command ;previewer command for your site
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
69 (if YaTeX-dos "dviout -wait=0"
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
70 "xdvi -geo +0+0 -s 4")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
71 "*Default previewer command including its option.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
72 This default value is for X window system.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
73
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
74 (defvar makeindex-command (if YaTeX-dos "makeind" "makeindex")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
75 "*Default makeindex command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
76
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
77 (defvar dviprint-command-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
78 (if YaTeX-dos "dviprt %s %f%t"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
79 "dvi2ps %f %t %s | lpr")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
80 "*Command line string to print out current file.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
81 Format string %s will be replaced by the filename. Do not forget to
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
82 specify the `from usage' and `to usage' with their option by format string
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
83 %f and %t.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
84 See also documentation of dviprint-from-format and dviprint-to-format.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
85
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
86 (defvar dviprint-from-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
87 (if YaTeX-dos "%b-" "-f %b")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
88 "*`From' page format of dvi filter. %b will turn to beginning page number.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
89
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
90 (defvar dviprint-to-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
91 (if YaTeX-dos "%e" "-t %e")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
92 "*`To' page format of dvi filter. %e will turn to end page number.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
93
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
94 (defvar YaTeX-default-document-style
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
95 (concat (if YaTeX-japan "j") "article")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
96 "*Default LaTeX Documentstyle for YaTeX-typeset-region.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
97
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
98 (defvar YaTeX-need-nonstop nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
99 "*T for adding `\\nonstopmode{}' to text before invoking latex command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
100
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
101 (defvar latex-warning-regexp "line.* [0-9]*"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
102 "*Regular expression of line number of warning message by latex command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
103
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
104 (defvar latex-error-regexp "l\\.[1-9][0-9]*"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
105 "*Regular expression of line number of latex error.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
106 Perhaps your latex command stops at this error message with line number of
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
107 LaTeX source text.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
108
1
912f6e258cba Support %#! usage to specify latex command.
yuuji
parents: 0
diff changeset
109 (defvar latex-dos-emergency-message
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
110 "Emergency stop" ;<- for Micro tex, ASCII-pTeX 1.6
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
111 "Message pattern of emergency stop of typesetting.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
112 Because Demacs (GNU Emacs on DOS) cannot have concurrent process, the
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
113 latex command which is stopping on a LaTeX error, is terminated by Demacs.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
114 Many latex command on DOS display some messages when it is terminated by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
115 other process, user or OS. Define to this variable a message string of your
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
116 latex command on DOS shown at abnormal termination.
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
117 Remember Demacs's call-process function is not oriented for interactive
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
118 process.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
119
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
120 (defvar latex-message-kanji-code 2
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
121 "*Kanji coding system latex command types out.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
122 1 = Shift JIS, 2 = JIS, 3 = EUC.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
123
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
124 (defvar NTT-jTeX nil
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
125 "*T for using NTT-jTeX for latex command.
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
126 More precisely, setting t to this variables inhibits inter-word break on
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
127 typeset document by line-break of source text. That is, YaTeX automatically
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
128 put % after each line at filling.
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
129 ‰üs+ƒCƒ“ƒfƒ“ƒg‚É‚æ‚Á‚ÄAƒ^ƒCƒvƒZƒbƒgŒã‚ÌŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü‚¤‚Ì‚ð—}§‚·‚éꇂÉ
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
130 t‚É‚·‚é(ŒÃ‚¢NTT-jTeX‚ÅŒ°’˜‚ÉŒ»‚ê‚é)B‹ï‘Ì“I‚É‚ÍAfill‚·‚é‚Æ‚«‚ÉŠes‚ÌI‚í‚è‚É
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
131 %‚ð•t‰Á‚·‚éB")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
132
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
133 (defvar YaTeX-item-regexp
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
134 (concat (regexp-quote "\\") "\\(sub\\|bib\\)*item")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
135 "*Regular expression of item command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
136
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
137 (defvar YaTeX-sectioning-regexp
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
138 "\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\)\\(\\*\\|\\b\\)"
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
139 "*LaTeX sectioning commands regexp.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
140
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
141 (defvar YaTeX-paragraph-start
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
142 (concat "^[ \t]*%\\|^[ \t]*$\\|\\'\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
143 YaTeX-sectioning-regexp ;sectioning commands
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
144 "\\|[A-z]*item\\|begin{\\|end{" ;special declaration
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
145 "\\|newpage\\b\\|vspace\\b"
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
146 "\\)")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
147 "*Paragraph starting regexp of common LaTeX source. Use this value
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
148 for YaTeX-uncomment-paragraph.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
149
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
150 (defvar YaTeX-paragraph-separate
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
151 (concat "^[ \t]*%\\|^[ \t]*$\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
152 YaTeX-sectioning-regexp ;sectioning commands
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
153 "\\|begin{\\|end{" ;special declaration
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
154 "\\|\\[\\|\\]"
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
155 "\\|newpage\\b\\|vspace\\b"
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
156 "\\)")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
157 "*Paragraph delimiter regexp of common LaTeX source. Use this value
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
158 for YaTeX-uncomment-paragraph.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
159
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
160 (defvar YaTeX-verbatim-environments
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
161 '("verbatim" "verbatim*")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
162 "*Assume these environments of this variable disable LaTeX commands.")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
163 (defvar YaTeX-verb-regexp "verb\\*?\\|path"
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
164 "*Regexp of verb family. Do not contain preceding \\\\ nor \\(\\).")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
165 (defvar YaTeX-fill-inhibit-environments
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
166 (append '("tabular" "tabular*" "array" "picture" "eqnarray" "eqnarray*"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
167 "equation" "equation*" "math" "displaymath")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
168 YaTeX-verbatim-environments)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
169 "*In these environments, YaTeX inhibits fill-paragraph from formatting.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
170 Define those environments as a form of list.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
171
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
172 (defvar YaTeX-itemizing-env-regexp
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
173 "itemize\\|enumerate\\|description\\|list\\|thebibliography"
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
174 "*Regexp of itemizing environments")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
175 (defvar YaTeX-equation-env-regexp
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
176 "array\\*?\\|equation\\*?"
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
177 "*Regexp of environments for equations")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
178 (defvar YaTeX-array-env-regexp
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
179 (concat
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
180 "array\\*?\\|eqnarray\\*?\\|tabbing\\|tabular\\*?\\|" ;LaTeX
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
181 "matrix\\|pmatrix\\|bmatrix\\|vmatrix\\|Vmatrix\\|" ;AMS-LaTeX
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
182 "align\\*?\\|split\\*?\\|aligned\\*?\\|alignat\\*?\\|" ;AMS-LaTeX
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
183 "[bpvV]?matrix\\|smallmatrix\\|cases\\|" ;AMS-LaTeX
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
184 "xalignat\\*?\\|xxalignat\\*?") ;AMS-LaTeX
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
185 "*Regexp of environments where `&' becomes field delimiter.")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
186 (defvar YaTeX-uncomment-once t
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
187 "*T for removing all continuous commenting character(%).
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
188 Nil for removing only one commenting character at the beginning-of-line.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
189
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
190 (defvar YaTeX-close-paren-always t
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
191 "*Close parenthesis always when YaTeX-modify-mode is nil.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
192
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
193 (defvar YaTeX-greek-by-maketitle-completion nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
194 "*T for greek letters completion by maketitle-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
195
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
196 (defvar YaTeX-auto-math-mode t
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
197 "*T for changing YaTeX-math mode automatically.")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
198 (defvar YaTeX-use-AMS-LaTeX nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
199 "*T for using AMS-LaTeX")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
200
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
201 (defvar yatex-mode-hook nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
202 "*List of functions to be called at the end of yatex-mode initializations.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
203
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
204 ;;-- Math mode values --
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
205
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
206 (defvar YaTeX-math-key-list-default
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
207 '((";" . YaTeX-math-sign-alist)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
208 (":" . YaTeX-greek-key-alist))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
209 "Default key sequence to invoke math-mode's image completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
210
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
211 (defvar YaTeX-math-key-list-private nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
212 "*User defined alist, math-mode-prefix vs completion alist.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
213
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
214 (defvar YaTeX-math-key-list
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
215 (append YaTeX-math-key-list-private YaTeX-math-key-list-default)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
216 "Key sequence to invoke math-mode's image completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
217
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
218 (defvar YaTeX-skip-default-reader nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
219 "Non-nil skips default argument reader of section-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
220
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
221 (defvar YaTeX-simple-messages nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
222 "Non-nil makes minibuffer messages simpler.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
223
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
224 (defvar YaTeX-template-file "~/work/template.tex"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
225 "*Template TeX source file. This will be inserted to empty file.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
226
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
227 (defvar YaTeX-addin-prefix "YaTeX:")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
228 ;------------ Completion table ------------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
229 ; Set tex-section-like command possible completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
230 (defvar section-table
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
231 '(("part") ("chapter") ("section") ("subsection")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
232 ("subsubsection") ("paragraph") ("subparagraph")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
233 ("author") ("thanks") ("documentstyle") ("documentclass") ("pagestyle")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
234 ("title") ("underline") ("label") ("makebox")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
235 ("footnote") ("footnotetext")
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
236 ("hspace*") ("vspace*") ("bibliography") ("bibitem") ("cite")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
237 ("input") ("include") ("includeonly") ("mbox") ("hbox") ("caption")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
238 ("newlength") ("setlength" 2) ("addtolength" 2) ("settowidth" 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
239 ("setcounter" 2) ("addtocounter" 2) ("stepcounter" 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
240 ("newcommand" 2) ("renewcommand" 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
241 ("setcounter" 2) ("newenvironment" 3) ("newtheorem" 2)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
242 ("cline") ("framebox") ("savebox" 2) ("sbox" 2) ("newsavebox") ("usebox")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
243 ("date") ("put") ("ref") ("pageref")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
244 ("multicolumn" 3) ("shortstack")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
245 ;; for mathmode accent
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
246 ("tilde") ("hat") ("check") ("bar") ("dot") ("ddot") ("vec")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
247 ("widetilde") ("widehat") ("overline") ("overrightarrow")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
248 ;; section types in mathmode
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
249 ("frac" 2) ("sqrt") ("mathrm") ("mathbf") ("mathit")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
250 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
251 "Default completion table for section-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
252
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
253 (defvar user-section-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
254 (defvar tmp-section-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
255
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
256 ; Set tex-environment possible completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
257 (defvar env-table
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
258 '(("quote") ("quotation") ("center") ("verse") ("document")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
259 ("verbatim") ("itemize") ("enumerate") ("description")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
260 ("list") ("tabular") ("tabular*") ("table") ("tabbing") ("titlepage")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
261 ("sloppypar") ("quotation") ("picture") ("displaymath")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
262 ("eqnarray") ("figure") ("equation") ("abstract") ("array")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
263 ("thebibliography") ("theindex") ("flushleft") ("flushright")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
264 ("minipage")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
265 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
266 "Default completion table for begin-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
267
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
268 (defvar user-env-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
269 (defvar tmp-env-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
270
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
271 ; Set {\Large }-like completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
272 (defvar fontsize-table
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
273 '(("rm") ("em") ("bf") ("boldmath") ("it") ("sl") ("sf") ("sc") ("tt")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
274 ("dg") ("dm")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
275 ("tiny") ("scriptsize") ("footnotesize") ("small")("normalsize")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
276 ("large") ("Large") ("LARGE") ("huge") ("Huge")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
277 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
278 "Default completion table for large-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
279
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
280 (defvar user-fontsize-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
281 (defvar tmp-fontsize-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
282
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
283 (defvar singlecmd-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
284 (append
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
285 '(("maketitle") ("makeindex") ("sloppy") ("protect")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
286 ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
287 ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
288 ("pagebreak") ("nopagebreak")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
289 ("newpage") ("clearpage") ("cleardoublepage")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
290 ("footnotemark") ("verb") ("verb*")
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
291 ("linebreak") ("pagebreak") ("noindent") ("indent")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
292 ("left") ("right") ("dots")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
293 )
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
294 (if YaTeX-greek-by-maketitle-completion
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
295 '(("alpha") ("beta") ("gamma") ("delta") ("epsilon")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
296 ("varepsilon") ("zeta") ("eta") ("theta")("vartheta")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
297 ("iota") ("kappa") ("lambda") ("mu") ("nu") ("xi") ("pi")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
298 ("varpi") ("rho") ("varrho") ("sigma") ("varsigma") ("tau")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
299 ("upsilon") ("phi") ("varphi") ("chi") ("psi") ("omega")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
300 ("Gamma") ("Delta") ("Theta") ("Lambda")("Xi") ("Pi")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
301 ("Sigma") ("Upsilon") ("Phi") ("Psi") ("Omega"))))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
302 "Default completion table for maketitle-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
303
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
304 (defvar user-singlecmd-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
305 (defvar tmp-singlecmd-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
306
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
307 ;---------- Key mode map ----------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
308 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
309 ;; Create new key map: YaTeX-mode-map
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
310 ;; Do not change this section.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
311 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
312 (defvar YaTeX-mode-map nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
313 "Keymap used in YaTeX mode")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
314
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
315 (defvar YaTeX-prefix-map nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
316 "Keymap used when YaTeX-prefix key pushed")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
317
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
318 (defvar YaTeX-user-extensional-map (make-sparse-keymap)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
319 "*Keymap used for the user's customization")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
320 (defvar YaTeX-current-completion-type nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
321 "Has current completion type. This may be used in YaTeX addin functions.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
322
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
323 (defvar YaTeX-modify-mode nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
324 "*Current editing mode.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
325 When non-nil, each opening parentheses only opens,
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
326 nil enters both open/close parentheses when opening parentheses key pressed.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
327
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
328 (defvar YaTeX-math-mode nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
329 "Holds whether current mode is math-mode.")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
330 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
331 ;; Define key table
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
332 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
333 (if YaTeX-mode-map
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
334 nil
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
335 (setq YaTeX-mode-map (make-sparse-keymap))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
336 (setq YaTeX-prefix-map (make-sparse-keymap))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
337 (define-key YaTeX-mode-map "\"" 'YaTeX-insert-quote)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
338 (define-key YaTeX-mode-map "{" 'YaTeX-insert-braces)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
339 (define-key YaTeX-mode-map "(" 'YaTeX-insert-parens)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
340 (define-key YaTeX-mode-map "$" 'YaTeX-insert-dollar)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
341 (define-key YaTeX-mode-map "|" 'YaTeX-insert-bar)
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
342 (define-key YaTeX-mode-map "&" 'YaTeX-insert-amper)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
343 (define-key YaTeX-mode-map "[" 'YaTeX-insert-brackets)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
344 (define-key YaTeX-mode-map YaTeX-prefix YaTeX-prefix-map)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
345 (define-key YaTeX-mode-map "\M-\C-@" 'YaTeX-mark-environment)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
346 (define-key YaTeX-mode-map "\M-\C-a" 'YaTeX-beginning-of-environment)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
347 (define-key YaTeX-mode-map "\M-\C-e" 'YaTeX-end-of-environment)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
348 (define-key YaTeX-mode-map "\M-\C-m" 'YaTeX-intelligent-newline)
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
349 (define-key YaTeX-mode-map "\C-i" 'YaTeX-indent-line)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
350 (YaTeX-define-key "%" 'YaTeX-%-menu)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
351 (YaTeX-define-key "t" 'YaTeX-typeset-menu)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
352 (YaTeX-define-key "w" 'YaTeX-switch-mode-menu)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
353 (YaTeX-define-key "'" 'YaTeX-prev-error)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
354 (YaTeX-define-key "^" 'YaTeX-visit-main)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
355 (YaTeX-define-key "4^" 'YaTeX-visit-main-other-window)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
356 (YaTeX-define-key "4g" 'YaTeX-goto-corresponding-*-other-window)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
357 (YaTeX-define-key "44" 'YaTeX-switch-to-window)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
358 (and YaTeX-emacs-19 window-system
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
359 (progn
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
360 (YaTeX-define-key "5^" 'YaTeX-visit-main-other-frame)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
361 (YaTeX-define-key "5g" 'YaTeX-goto-corresponding-*-other-frame)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
362 (YaTeX-define-key "55" 'YaTeX-switch-to-window)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
363 (YaTeX-define-key " " 'YaTeX-do-completion)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
364 (YaTeX-define-key "v" 'YaTeX-version)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
365
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
366 (YaTeX-define-key "}" 'YaTeX-insert-braces-region)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
367 (YaTeX-define-key "]" 'YaTeX-insert-brackets-region)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
368 (YaTeX-define-key ")" 'YaTeX-insert-parens-region)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
369 (YaTeX-define-key "$" 'YaTeX-insert-dollars-region)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
370 (YaTeX-define-key "i" 'YaTeX-fill-item)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
371 (YaTeX-define-key
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
372 "\\" '(lambda () (interactive) (insert "$\\backslash$")))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
373 (if YaTeX-no-begend-shortcut
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
374 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
375 (YaTeX-define-key "B" 'YaTeX-make-begin-end-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
376 (YaTeX-define-key "b" 'YaTeX-make-begin-end))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
377 (YaTeX-define-begend-key "bc" "center")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
378 (YaTeX-define-begend-key "bd" "document")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
379 (YaTeX-define-begend-key "bD" "description")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
380 (YaTeX-define-begend-key "be" "enumerate")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
381 (YaTeX-define-begend-key "bE" "equation")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
382 (YaTeX-define-begend-key "bi" "itemize")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
383 (YaTeX-define-begend-key "bl" "flushleft")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
384 (YaTeX-define-begend-key "bm" "minipage")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
385 (YaTeX-define-begend-key "bt" "tabbing")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
386 (YaTeX-define-begend-key "bT" "tabular")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
387 (YaTeX-define-begend-key "b\^t" "table")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
388 (YaTeX-define-begend-key "bp" "picture")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
389 (YaTeX-define-begend-key "bq" "quote")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
390 (YaTeX-define-begend-key "bQ" "quotation")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
391 (YaTeX-define-begend-key "br" "flushright")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
392 (YaTeX-define-begend-key "bv" "verbatim")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
393 (YaTeX-define-begend-key "bV" "verse")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
394 (YaTeX-define-key "B " 'YaTeX-make-begin-end-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
395 (YaTeX-define-key "b " 'YaTeX-make-begin-end))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
396 (YaTeX-define-key "e" 'YaTeX-end-environment)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
397 (YaTeX-define-key "S" 'YaTeX-make-section-region)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
398 (YaTeX-define-key "s" 'YaTeX-make-section)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
399 (YaTeX-define-key "L" 'YaTeX-make-fontsize-region)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
400 (YaTeX-define-key "l" 'YaTeX-make-fontsize)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
401 (YaTeX-define-key "m" 'YaTeX-make-singlecmd)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
402 (YaTeX-define-key "." 'YaTeX-comment-paragraph)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
403 (YaTeX-define-key "," 'YaTeX-uncomment-paragraph)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
404 (YaTeX-define-key ">" 'YaTeX-comment-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
405 (YaTeX-define-key "<" 'YaTeX-uncomment-region)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
406 (YaTeX-define-key "g" 'YaTeX-goto-corresponding-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
407 (YaTeX-define-key "k" 'YaTeX-kill-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
408 (YaTeX-define-key "c" 'YaTeX-change-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
409 (YaTeX-define-key "a" 'YaTeX-make-accent)
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
410 (YaTeX-define-key "?" 'YaTeX-help)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
411 (YaTeX-define-key "/" 'YaTeX-apropos)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
412 (YaTeX-define-key "&" 'YaTeX-what-column)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
413 (YaTeX-define-key "d" 'YaTeX-display-hierarchy)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
414 (YaTeX-define-key "x" YaTeX-user-extensional-map)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
415 (YaTeX-define-key "n"
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
416 '(lambda () (interactive) (insert "\\\\")))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
417 (if YaTeX-dos
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
418 (define-key YaTeX-prefix-map "\C-r"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
419 '(lambda () (interactive)
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
420 (set-screen-height YaTeX-saved-screen-height) (recenter))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
421 (mapcar
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
422 (function
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
423 (lambda (key)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
424 (define-key YaTeX-mode-map (car key) 'YaTeX-math-insert-sequence)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
425 YaTeX-math-key-list))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
426
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
427 (defvar YaTeX-section-completion-map nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
428 "*Key map used at YaTeX completion in the minibuffer.")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
429 (if YaTeX-section-completion-map nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
430 (setq YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
431 (copy-keymap (or (and (boundp 'gmhist-completion-map)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
432 gmhist-completion-map)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
433 minibuffer-local-completion-map)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
434 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
435 " " 'YaTeX-minibuffer-complete)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
436 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
437 "\C-i" 'YaTeX-minibuffer-complete)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
438 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
439 "\C-v" 'YaTeX-read-section-with-overview))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
440
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
441 (defvar YaTeX-recursive-map nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
442 "*Key map used at YaTeX reading arguments in the minibuffer.")
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
443 (if YaTeX-recursive-map nil
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
444 (setq YaTeX-recursive-map (copy-keymap global-map))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
445 (define-key YaTeX-recursive-map YaTeX-prefix YaTeX-prefix-map))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
446
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
447 ;---------- Define other variable ----------
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
448 (defvar env-name "document" "*Initial tex-environment completion")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
449 (defvar section-name "documentstyle" "*Initial tex-section completion")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
450 (defvar fontsize-name "large" "*Initial fontsize completion")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
451 (defvar single-command "maketitle" "*Initial LaTeX single command")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
452 (defvar YaTeX-kanji-code (if YaTeX-dos 1 2)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
453 "*File kanji code used by Japanese TeX.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
454
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
455 (defvar YaTeX-coding-system nil "File coding system used by Japanese TeX.")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
456 (cond
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
457 (YaTeX-emacs-20
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
458 (setq YaTeX-coding-system
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
459 (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
460 ((boundp 'MULE)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
461 (setq YaTeX-coding-system
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
462 (symbol-value (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
463 ((boundp 'NEMACS)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
464 (setq YaTeX-latex-message-code latex-message-kanji-code)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
465
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
466 (defvar YaTeX-mode-syntax-table nil
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
467
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
468 "*Syntax table for yatex-mode")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
469
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
470 (if YaTeX-mode-syntax-table nil
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
471 (setq YaTeX-mode-syntax-table (make-syntax-table (standard-syntax-table)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
472 (modify-syntax-entry ?\n " " YaTeX-mode-syntax-table)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
473 (modify-syntax-entry ?\{ "(}" YaTeX-mode-syntax-table)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
474 (modify-syntax-entry ?\} "){" YaTeX-mode-syntax-table))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
475
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
476 ;---------- Provide YaTeX-mode ----------
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
477 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
478 ;; Major mode definition
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
479 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
480 (defun yatex-mode ()
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
481 " Yet Another LaTeX mode: Major mode for editing input files of LaTeX.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
482 -You can invoke processes concerning LaTeX typesetting by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
483 \\[YaTeX-typeset-menu]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
484 -Complete LaTeX environment form of `\\begin{env} ... \\end{env}' by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
485 \\[YaTeX-make-begin-end]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
486 -Enclose region into some environment by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
487 \\[universal-argument] \\[YaTeX-make-begin-end]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
488 -Complete LaTeX command which takes argument like `\\section{}' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
489 \\[YaTeX-make-section]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
490 -Put LaTeX command which takes no arguments like `\\maketitle' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
491 \\[YaTeX-make-singlecmd]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
492 -Complete font or character size descriptor like `{\\large }' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
493 \\[YaTeX-make-fontsize]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
494 -Enclose region into those descriptors above by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
495 \\[universal-argument] \\[YaTeX-make-fontsize]
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
496 -Enter European accent notations by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
497 \\[YaTeX-make-accent]
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
498 -Toggle various modes of YaTeX by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
499 \\[YaTeX-switch-mode-menu]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
500 -Change environt name (on the begin/end line) by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
501 \\[YaTeX-change-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
502 -Kill LaTeX command/environment sequences by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
503 \\[YaTeX-kill-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
504 -Kill LaTeX command/environment with its contents
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
505 \\[universal-argument] \\[YaTeX-kill-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
506 -Go to corresponding object (begin/end, file, labels) by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
507 \\[YaTeX-goto-corresponding-*] or
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
508 \\[YaTeX-goto-corresponding-*-other-window] (in other window)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
509 \\[YaTeX-goto-corresponding-*-other-frame] (in other frame)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
510 -Go to main LaTeX source text by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
511 \\[YaTeX-visit-main] or
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
512 \\[YaTeX-visit-main-other-window] (in other window)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
513 \\[YaTeX-visit-main-other-frame] (in other frame)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
514 -Comment out or uncomment region by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
515 \\[YaTeX-comment-region] or \\[YaTeX-uncomment-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
516 -Comment out or uncomment paragraph by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
517 \\[YaTeX-comment-paragraph] or \\[YaTeX-uncomment-paragraph]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
518 -Make an \\item entry hang-indented by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
519 \\[YaTeX-fill-item]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
520 -Enclose the region with parentheses by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
521 \\[YaTeX-insert-parens-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
522 \\[YaTeX-insert-braces-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
523 \\[YaTeX-insert-brackets-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
524 \\[YaTeX-insert-dollars-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
525 -Look up the corresponding column header of tabular environment by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
526 \\[YaTeX-what-column]
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
527 -Enter a newline and an entry suitable for environment by
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
528 \\[YaTeX-intelligent-newline]
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
529 -View the structure of file inclusion by
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
530 \\[YaTeX-display-hierarchy]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
531 -Refer the online help of popular LaTeX commands by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
532 \\[YaTeX-help] (help)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
533 \\[YaTeX-apropos] (apropos)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
534 -Edit `%# notation' by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
535 \\[YaTeX-%-menu]
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
536
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
537 Those are enough for fastening your editing of LaTeX source. But further
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
538 more features are available and they are documented in the manual.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
539 "
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
540 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
541 (kill-all-local-variables)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
542 (setq major-mode 'yatex-mode)
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
543 (setq mode-name (if YaTeX-japan "‚â‚Ä‚Ó" "YaTeX"))
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
544 (mapcar 'make-local-variable
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
545 '(dvi2-command fill-column fill-prefix
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
546 tmp-env-table tmp-section-table tmp-fontsize-table
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
547 tmp-singlecmd-table paragraph-start paragraph-separate
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
548 YaTeX-math-mode indent-line-function
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
549 comment-start comment-start-skip
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
550 ))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
551 (cond ((boundp 'MULE)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
552 (set-file-coding-system YaTeX-coding-system))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
553 ((and YaTeX-emacs-20 (boundp 'buffer-file-coding-system))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
554 (setq buffer-file-coding-system YaTeX-coding-system))
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
555 ((featurep 'mule)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
556 (set-file-coding-system YaTeX-coding-system))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
557 ((boundp 'NEMACS)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
558 (make-local-variable 'kanji-fileio-code)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
559 (setq kanji-fileio-code YaTeX-kanji-code)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
560 (setq fill-column YaTeX-fill-column
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
561 fill-prefix YaTeX-fill-prefix
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
562 paragraph-start YaTeX-paragraph-start
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
563 paragraph-separate YaTeX-paragraph-separate
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
564 indent-line-function 'YaTeX-indent-line
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
565 comment-start YaTeX-comment-prefix
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
566 comment-end ""
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
567 ;;comment-start-skip "[^\\\\]%+[ \t]*"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
568 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
569 (use-local-map YaTeX-mode-map)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
570 (set-syntax-table YaTeX-mode-syntax-table)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
571 (if YaTeX-dos (setq YaTeX-saved-screen-height (screen-height)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
572 (YaTeX-read-user-completion-table)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
573 (and (fboundp 'YaTeX-19-collect-macros) (YaTeX-19-collect-macros))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
574 (turn-on-auto-fill) ;1.63
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
575 (and (= 0 (buffer-size)) (file-exists-p YaTeX-template-file)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
576 (y-or-n-p (format "Insert %s?" YaTeX-template-file))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
577 (insert-file-contents (expand-file-name YaTeX-template-file)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
578 (run-hooks 'text-mode-hook 'yatex-mode-hook))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
579
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
580 ;---------- Define YaTeX-mode functions ----------
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
581 (defvar YaTeX-ec "\\" "Escape character of current mark-up language.")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
582 (defvar YaTeX-ec-regexp (regexp-quote YaTeX-ec))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
583 (defvar YaTeX-struct-begin
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
584 (concat YaTeX-ec "begin{%1}%2")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
585 "Keyword format of begin-environment.")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
586 (defvar YaTeX-struct-end
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
587 (concat YaTeX-ec "end{%1}")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
588 "Keyword format of end-environment.")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
589 (defvar YaTeX-struct-name-regexp "[^}]+"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
590 "Environment name regexp.")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
591 (defvar YaTeX-TeX-token-regexp
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
592 (cond (YaTeX-japan "[A-Za-z*‚ -‚ñˆŸ-êž]+")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
593 (t "[A-Za-z*]+"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
594 "Regexp of characters which can be a member of TeX command's name.")
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
595 (defvar YaTeX-command-token-regexp YaTeX-TeX-token-regexp
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
596 "Regexp of characters which can be a member of current mark up language's command name.")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
597
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
598 ;;(defvar YaTeX-struct-section
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
599 ;; (concat YaTeX-ec "%1{%2}")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
600 ;; "Keyword to make section.")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
601
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
602 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
603 ;; autoload section
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
604 ;;;
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
605
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
606 ;;autoload from yatexprc.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
607 (autoload 'YaTeX-visit-main "yatexprc" "Visit main LaTeX file." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
608 (autoload 'YaTeX-visit-main-other-window "yatexprc"
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
609 "Visit main other window." t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
610 (autoload 'YaTeX-main-file-p "yatexprc" "Check if the file is main." t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
611 (autoload 'YaTeX-get-builtin "yatexprc" "Get %# built-in." t)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
612 (autoload 'YaTeX-system "yatexprc" "Call system command" t)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
613 (autoload 'YaTeX-save-buffers "yatexprc" "Save buffers of same major mode" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
614
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
615 ;;autoload from yatexmth.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
616 (autoload 'YaTeX-math-insert-sequence "yatexmth" "Image input." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
617 (autoload 'YaTeX-in-math-mode-p "yatexmth" "Check if in math-env." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
618 (autoload 'YaTeX-toggle-math-mode "yatexmth" "YaTeX math-mode interfaces." t)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
619 (autoload 'YaTeX-math-member-p "yatexmth" "Check if a word is math command." t)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
620 (autoload 'YaTeX-insert-amsparens-region "yatexmth" "AMS parens region" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
621 (autoload 'YaTeX-insert-amsbraces-region "yatexmth" "AMS braces region" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
622 (autoload 'YaTeX-insert-amsbrackets-region "yatexmth" "AMS brackets region" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
623 (autoload 'YaTeX-on-parenthesis-p "yatexmth" "Check if on math-parens" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
624 (autoload 'YaTeX-goto-open-paren "yatexmth" "Goto opening paren" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
625 (autoload 'YaTeX-change-parentheses "yatexmth" "Change corresponding parens" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
626
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
627 ;;autoload from yatexhlp.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
628 (autoload 'YaTeX-help "yatexhlp" "YaTeX helper with LaTeX commands." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
629 (autoload 'YaTeX-apropos "yatexhlp" "Apropos for (La)TeX commands." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
630
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
631 ;;autoload from yatexgen.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
632 (autoload 'YaTeX-generate "yatexgen" "YaTeX add-in function generator." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
633 (autoload 'YaTeX-generate-simple "yatexgen" "YaTeX add-in support." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
634
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
635 ;;autoload from yatexsec.el
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
636 (autoload 'YaTeX-section-overview "yatexsec" "YaTeX sectioning(view)" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
637 (autoload 'YaTeX-read-section-in-minibuffer "yatexsec" "YaTeX sectioning" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
638 (autoload 'YaTeX-make-section-with-overview "yatexsec" "YaTeX sectioning" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
639
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
640 ;;autoload from yatexenv.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
641 (autoload 'YaTeX-what-column "yatexenv" "YaTeX env. specific funcs" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
642 (autoload 'YaTeX-intelligent-newline "yatexenv" "YaTeX env. specific funcs" t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
643 (autoload 'YaTeX-indent-line-equation "yatexenv" "Indent equation lines." t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
644 (autoload 'YaTeX-goto-corresponding-leftright "yatexenv" "\left\right jumps" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
645
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
646 ;;autoload from yatexhie.el
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
647 (autoload 'YaTeX-display-hierarchy "yatexhie"
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
648 "YaTeX document hierarchy browser" t)
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
649 (autoload 'YaTeX-display-hierarchy-directly "yatexhie"
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
650 "Same as YaTeX-display-hierarchy. Call from mouse." t)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
651
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
652 ;; autoload from yahtml.el
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
653 (autoload 'yahtml-inner-environment-but "yahtml" "yahtml internal func." t)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
654
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
655 ;;;
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
656 ;; YaTeX-mode functions
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
657 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
658 (defun YaTeX-insert-begin-end (env region-mode)
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
659 "Insert \\begin{mode-name} and \\end{mode-name}.
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
660 This works also for other defined begin/end tokens to define the structure."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
661 (setq YaTeX-current-completion-type 'begin)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
662 (let*((ccol (current-column)) beg beg2 exchange
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
663 (arg region-mode) ;for old compatibility
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
664 (indent-column (+ ccol YaTeX-environment-indent))(i 1) func)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
665 (if (and region-mode (> (point) (mark)))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
666 (progn (exchange-point-and-mark)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
667 (setq exchange t
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
668 ccol (current-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
669 indent-column (+ ccol YaTeX-environment-indent))))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
670 ;;VER2 (insert "\\begin{" env "}" (YaTeX-addin env))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
671 (setq beg (point))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
672 (YaTeX-insert-struc 'begin env)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
673 (setq beg2 (point))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
674 (insert "\n")
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
675 (indent-to indent-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
676 (save-excursion
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
677 ;;indent optional argument of \begin{env}, if any
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
678 (while (> (point-beginning-of-line) beg)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
679 (skip-chars-forward "\\s " (point-end-of-line))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
680 (indent-to indent-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
681 (forward-line -1)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
682 (require 'yatexenv)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
683 (if region-mode
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
684 ;;if region-mode, indent all text in the region
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
685 (save-excursion
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
686 (if (fboundp (intern-soft (concat "YaTeX-enclose-" env)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
687 (funcall (intern-soft (concat "YaTeX-enclose-" env))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
688 (point) (mark))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
689 (while (< (progn (forward-line 1) (point)) (mark))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
690 (if (eolp) nil
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
691 (skip-chars-forward " \t\n")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
692 (indent-to indent-column))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
693 (if region-mode (exchange-point-and-mark))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
694 (indent-to ccol)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
695 ;;VER2 (insert "\\end{" env "}\n")
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
696 (YaTeX-insert-struc 'end env)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
697 (YaTeX-reindent ccol)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
698 (if region-mode
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
699 (progn
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
700 (insert "\n")
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
701 (or exchange (exchange-point-and-mark)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
702 (goto-char beg2)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
703 (YaTeX-intelligent-newline nil)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
704 (YaTeX-indent-line))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
705 (if YaTeX-current-position-register
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
706 (point-to-register YaTeX-current-position-register))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
707
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
708 (defun YaTeX-make-begin-end (arg)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
709 "Make LaTeX environment command of \\begin{env.} ... \\end{env.}
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
710 by completing read.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
711 If you invoke this command with universal argument,
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
712 \(key binding for universal-argument is \\[universal-argument]\)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
713 you can put REGION into that environment between \\begin and \\end."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
714 (interactive "P")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
715 (let*
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
716 ((mode (if arg " region" ""))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
717 (env
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
718 (YaTeX-read-environment
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
719 (format "Begin environment%s(default %s): " mode env-name))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
720 (if (string= env "")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
721 (setq env env-name))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
722 (setq env-name env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
723 (YaTeX-update-table
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
724 (list env-name) 'env-table 'user-env-table 'tmp-env-table)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
725 (YaTeX-insert-begin-end env-name arg)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
726
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
727 (defun YaTeX-make-begin-end-region ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
728 "Call YaTeX-make-begin-end with ARG to specify region mode."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
729 (interactive)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
730 (YaTeX-make-begin-end t))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
731
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
732 (defun YaTeX-make-section (arg &optional beg end cmd)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
733 "Make LaTeX \\section{} type command with completing read.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
734 With numeric ARG, you can specify the number of arguments of
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
735 LaTeX command.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
736 For example, if you want to produce LaTeX command
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
737
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
738 \\addtolength{\\topmargin}{8mm}
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
739
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
740 which has two arguments. You can produce that sequence by typing...
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
741 ESC 2 C-c s add SPC RET \\topm SPC RET 8mm RET
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
742 \(by default\)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
743 Then yatex will automatically complete `addtolength' with two arguments
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
744 next time.
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
745 You can complete symbol at LaTeX command and the 1st argument.
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
746
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
747 If the optional 2nd and 3rd argument BEG END are specified, enclose
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
748 the region from BEG to END into the first argument of the LaTeX sequence.
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
749 Optional 4th arg CMD is LaTeX command name, for non-interactive use."
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
750 (interactive "P")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
751 (setq YaTeX-current-completion-type 'section)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
752 (if (equal arg '(4)) (setq beg (region-beginning) end (region-end)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
753 (unwind-protect
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
754 (let*
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
755 ((source-window (selected-window))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
756 (section
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
757 (or cmd
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
758 (YaTeX-read-section
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
759 (if YaTeX-simple-messages
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
760 (format "Section-type (default %s): " section-name)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
761 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
762 (format "%s???{} (default %s)%s: " YaTeX-ec section-name
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
763 (format "[level:%d]" (minibuffer-depth)))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
764 (format "(C-v for view-section) %s???{%s} (default %s): "
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
765 YaTeX-ec (if beg "region" "") section-name)))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
766 nil)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
767 (section (if (string= section "") section-name section))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
768 (numarg ;; The number of section-type command's argument
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
769 (or (and (numberp arg) arg)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
770 (nth 1 (YaTeX-lookup-table section 'section))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
771 1))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
772 (arg-reader (intern-soft (concat "YaTeX::" section)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
773 (addin-args (and arg-reader (fboundp arg-reader)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
774 (title "")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
775 (j 1)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
776 (enable-recursive-minibuffers t));;let
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
777 (setq section-name section)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
778 (if beg
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
779 (let ((e (make-marker)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
780 (goto-char end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
781 (insert "}")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
782 (set-marker e (point))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
783 (goto-char beg)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
784 (insert YaTeX-ec section-name "{")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
785 (goto-char e)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
786 (set-marker e nil))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
787 (use-global-map YaTeX-recursive-map)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
788 (if (= numarg 0) (YaTeX-make-singlecmd section-name)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
789 (progn (insert YaTeX-ec section-name)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
790 (insert (YaTeX-addin section-name))))
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
791 (while (<= j numarg)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
792 (insert
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
793 "{"
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
794 (setq title
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
795 (cond
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
796 (addin-args (funcall arg-reader j))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
797 (YaTeX-skip-default-reader "")
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
798 (t
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
799 (read-string (format "Argument %d of %s: " j section)))))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
800 "}")
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
801 (setq j (1+ j))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
802 (YaTeX-update-table
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
803 (if (/= numarg 1) (list section numarg)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
804 (list section))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
805 'section-table 'user-section-table 'tmp-section-table)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
806 (if YaTeX-current-position-register
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
807 (point-to-register YaTeX-current-position-register))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
808 (if (string= (buffer-substring (- (point) 2) (point)) "{}")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
809 (forward-char -1))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
810 (while (string= (buffer-substring (- (point) 3) (1- (point))) "{}")
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
811 (forward-char -2)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
812 (if (<= (minibuffer-depth) 0) (use-global-map global-map))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
813
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
814 (defun YaTeX-make-section-region (args beg end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
815 "Call YaTeX-make-section with arguments to specify region mode."
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
816 (interactive "P\nr")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
817 (YaTeX-make-section args beg end))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
818
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
819 (defun YaTeX-make-fontsize (arg &optional fontsize)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
820 "Make completion like {\\large ...} or {\\slant ...} in minibuffer.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
821 If you invoke this command with universal argument, you can put region
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
822 into {\\xxx } braces.
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
823 \(key binding for universal-argument is \\[universal-argument]\)"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
824 (interactive "P")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
825 (YaTeX-sync-local-table 'tmp-fontsize-table)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
826 (let* ((mode (if arg "region" ""))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
827 (fontsize
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
828 (or fontsize
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
829 (YaTeX-read-fontsize
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
830 (if YaTeX-simple-messages
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
831 (format "Font or size (default %s): " fontsize-name)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
832 (format "{\\??? %s} (default %s)%s: " mode fontsize-name
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
833 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
834 (format "[level:%d]" (minibuffer-depth)) "")))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
835 nil nil))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
836 (if (string= fontsize "")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
837 (setq fontsize fontsize-name))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
838 (setq YaTeX-current-completion-type 'large)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
839 (setq fontsize-name fontsize)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
840 (YaTeX-update-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
841 (list fontsize-name)
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
842 'fontsize-table 'user-fontsize-table 'tmp-fontsize-table)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
843 (if arg
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
844 (save-excursion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
845 (if (> (point) (mark)) (exchange-point-and-mark))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
846 (insert "{\\" fontsize-name " ")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
847 (exchange-point-and-mark)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
848 (insert "}"))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
849 (insert "{\\" fontsize-name " ")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
850 (if YaTeX-current-position-register
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
851 (point-to-register YaTeX-current-position-register))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
852 (save-excursion
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
853 (insert (YaTeX-addin fontsize-name) "}")))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
854
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
855 (defun YaTeX-make-fontsize-region ()
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
856 "Call function:YaTeX-make-fontsize with ARG to specify region mode."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
857 (interactive)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
858 (YaTeX-make-fontsize t))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
859
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
860 (defvar YaTeX-singlecmd-suffix "" "*Suffix for maketitle-type commands.")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
861 (defvar YaTeX-read-singlecmd-history nil "Holds maketitle-type history.")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
862 (put 'YaTeX-read-singlecmd-history 'no-default t)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
863 (defun YaTeX-make-singlecmd (single)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
864 (interactive
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
865 (list (YaTeX-cplread-with-learning
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
866 (if YaTeX-simple-messages
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
867 (format "maketitle-type (default %s): " single-command)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
868 (format "%s??? (default %s)%s: " YaTeX-ec single-command
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
869 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
870 (format "[level:%d]" (minibuffer-depth)) "")))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
871 'singlecmd-table 'user-singlecmd-table 'tmp-singlecmd-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
872 nil nil nil 'YaTeX-read-singlecmd-history)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
873 (if (string= single "")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
874 (setq single single-command))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
875 (setq single-command single)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
876 (setq YaTeX-current-completion-type 'maketitle)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
877 (let ((dollar (and (not (YaTeX-in-math-mode-p))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
878 (YaTeX-math-member-p single-command)))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
879 p q)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
880 (if dollar (insert "$"))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
881 (insert YaTeX-ec single-command)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
882 (setq p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
883 (insert (YaTeX-addin single) YaTeX-singlecmd-suffix)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
884 (if dollar (insert "$"))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
885 (setq q (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
886 (goto-char p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
887 (forward-char -2)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
888 (if (looking-at "\\[\\]") (forward-char 1) (goto-char q)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
889 (if YaTeX-current-position-register
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
890 (point-to-register YaTeX-current-position-register)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
891
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
892 (defvar YaTeX-completion-begin-regexp "[{\\]"
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
893 "Regular expression of limit where LaTeX command's completion begins.")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
894
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
895 (defun YaTeX-do-completion ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
896 "Try completion on LaTeX command preceding point."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
897 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
898 (if
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
899 (or (eq (preceding-char) ? )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
900 (eq (preceding-char) ?\t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
901 (eq (preceding-char) ?\n)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
902 (bobp))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
903 (message "Nothing to complete.") ;Do not complete
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
904 (let* ((end (point))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
905 (limit (point-beginning-of-line))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
906 (completion-begin
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
907 (progn (re-search-backward "[ \t\n]" limit 1) (point)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
908 (begin (progn
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
909 (goto-char end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
910 (if (re-search-backward YaTeX-completion-begin-regexp
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
911 completion-begin t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
912 (1+ (point))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
913 nil))))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
914 (goto-char end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
915 (cond
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
916 ((null begin)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
917 (message "I think it is not a LaTeX sequence."))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
918 (t
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
919 (mapcar 'YaTeX-sync-local-table
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
920 '(tmp-section-table tmp-env-table tmp-singlecmd-table))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
921 (let*((pattern (buffer-substring begin end))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
922 (all-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
923 (append
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
924 section-table user-section-table tmp-section-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
925 env-table user-env-table tmp-env-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
926 singlecmd-table user-singlecmd-table tmp-singlecmd-table))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
927 ;; First,
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
928 ;; search completion without backslash.
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
929 (completion (try-completion pattern all-table)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
930 (if
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
931 (eq completion nil)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
932 ;; Next,
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
933 ;; search completion with backslash
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
934 (setq completion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
935 (try-completion (buffer-substring (1- begin) end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
936 all-table nil)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
937 begin (1- begin)))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
938 (cond
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
939 ((null completion)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
940 (message (concat "Can't find completion for '" pattern "'"))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
941 (ding))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
942 ((eq completion t) (message "Sole completion."))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
943 ((not (string= completion pattern))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
944 (kill-region begin end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
945 (insert completion)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
946 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
947 (t
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
948 (message "Making completion list...")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
949 (with-output-to-temp-buffer "*Help*"
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
950 (display-completion-list
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
951 (all-completions pattern all-table)))))))))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
952
12
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
953 (defun YaTeX-toggle-modify-mode (&optional arg)
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
954 (interactive "P")
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
955 (or (memq 'YaTeX-modify-mode mode-line-format)
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
956 (setq mode-line-format
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
957 (append (list "" 'YaTeX-modify-mode) mode-line-format)))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
958 (if (or arg (null YaTeX-modify-mode))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
959 (progn
12
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
960 (setq YaTeX-modify-mode "*m*")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
961 (message "Modify mode"))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
962 (setq YaTeX-modify-mode nil)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
963 (message "Cancel modify mode."))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
964 (set-buffer-modified-p (buffer-modified-p))) ;redraw mode-line
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
965
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
966 (defun YaTeX-switch-mode-menu (arg &optional char)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
967 (interactive "P")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
968 (message "Toggle: (M)odify-mode ma(T)h-mode")
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
969 (let ((c (or char (read-char))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
970 (cond
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
971 ((= c ?m) (YaTeX-toggle-modify-mode arg))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
972 ((or (= c ?$) (= c ?t))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
973 (if YaTeX-auto-math-mode
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
974 (message "Makes no sense in YaTeX-auto-math-mode.")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
975 (YaTeX-toggle-math-mode arg))))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
976
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
977 (defun YaTeX-insert-quote ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
978 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
979 (insert
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
980 (cond
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
981 ((YaTeX-literal-p) ?\")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
982 ((= (preceding-char) ?\\ ) ?\")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
983 ;((= (preceding-char) ?\( ) ?\")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
984 ((or (= (preceding-char) 32)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
985 (= (preceding-char) 9)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
986 (= (preceding-char) ?\n)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
987 (bobp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
988 (string-match
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
989 (regexp-quote (char-to-string (preceding-char)))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
990 "ABCDHIuvwxyz()"))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
991 "``")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
992 (t "''"))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
993
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
994 (defun YaTeX-closable-p ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
995 (and (not YaTeX-modify-mode)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
996 (not (eq YaTeX-close-paren-always 'never))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
997 (or YaTeX-close-paren-always (eolp))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
998 (not (input-pending-p))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
999 (not (YaTeX-literal-p)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1000 ;;(or YaTeX-modify-mode
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1001 ;; (and (not YaTeX-close-paren-always) (not (eolp)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1002 ;; (input-pending-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1003 ;; (YaTeX-quick-in-environment-p "verbatim"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1004 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1005
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1006 (defun YaTeX-insert-braces-region (beg end &optional open close)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1007 (interactive "r")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1008 (save-excursion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1009 (goto-char end)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1010 (insert (or close "}"))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1011 (goto-char beg)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1012 (insert (or open "{"))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1013
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1014 (defun YaTeX-insert-braces (arg &optional open close)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1015 (interactive "p")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1016 (let (env)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1017 (cond
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1018 ((YaTeX-jmode) (YaTeX-self-insert arg))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1019 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1020 ((save-excursion
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1021 (and (> (- (point) (point-min)) 6)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1022 (condition-case () (forward-char -6) (error nil)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1023 (looking-at "\\\\left\\\\"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1024 (insert "{\\right\\}")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1025 (forward-char -8))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1026 ((save-excursion ;from matsu@math.s.chiba-u.ac.jp
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1027 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1028 (looking-at "\\\\[bB]igl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1029 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1030 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1031 "{" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\}"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1032 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1033 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1034 (and (> (- (point) (point-min)) 7)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1035 (condition-case () (forward-char -7) (error nil)))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1036 (looking-at "\\\\[bB]iggl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1037 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1038 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1039 "{" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\}"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1040 (forward-char -8))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1041 ((= (preceding-char) ?\\ )
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1042 (insert "{\\}")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1043 (forward-char -2)) ;matsu's hack ends here
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1044 ((and (> (point) (+ (point-min) 4))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1045 (save-excursion (backward-char 4) (looking-at "\\\\end"))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1046 (not (YaTeX-literal-p))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1047 (setq env (YaTeX-inner-environment)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1048 (momentary-string-display
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1049 (concat
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1050 "{"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1051 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1052 (YaTeX-japan
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
1053 (format "¡“x‚©‚ç‚Í‚¿‚á‚ñ‚Æ %s b ‚ðŽg‚¢‚Ü‚µ‚傤" YaTeX-prefix))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1054 (t (format "You don't understand Zen of `%s b':p" YaTeX-prefix)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1055 "}")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1056 (point))
47
d7e7b4654058 Support special popup frame.
yuuji
parents: 46
diff changeset
1057 (insert (or open "{") env (or close "}")))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1058 (t
47
d7e7b4654058 Support special popup frame.
yuuji
parents: 46
diff changeset
1059 (insert (or open "{") (or close "}"))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1060 (forward-char -1)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1061 (if (and (eq (char-after (point)) ?\})
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1062 (eq (char-after (- (point) 2)) ?\\ ))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1063 (progn (insert "\\") (forward-char -1)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1064 ))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1065
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1066 (defun YaTeX-jmode ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1067 (or (and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1068 (and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1069
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1070 (defun YaTeX-jmode-off ()
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1071 (cond
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1072 ((and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1073 (canna-toggle-japanese-mode))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1074 ((and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1075 (egg:toggle-egg-mode-on-off))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1076 ((and (fboundp 'skk-mode) (boundp 'skk-mode) skk-mode)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1077 (cond
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1078 ((fboundp 'skk-latin-mode) (skk-latin-mode t))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1079 ((fboundp 'skk-mode-off) (skk-mode-off))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1080 (t (j-mode-off))))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1081 ((and (fboundp 'fep-force-off) (fep-force-off)))))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1082
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1083 (defun YaTeX-self-insert (arg)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1084 (call-interactively (global-key-binding (char-to-string last-command-char))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1085
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1086 (defun YaTeX-insert-brackets (arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1087 "Insert Kagi-kakko or \\ [ \\] pair or simply \[."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1088 (interactive "p")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1089 (let ((col (1- (current-column))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1090 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1091 ((YaTeX-jmode) (YaTeX-self-insert arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1092 ((not (YaTeX-closable-p))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1093 (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1094 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1095 (and (> (- (point) (point-min)) 5) (forward-char -5))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1096 (looking-at "\\\\left"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1097 (insert "[\\right]")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1098 (forward-char -7))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1099 ((save-excursion ;from matsu@math.s.chiba-u.ac.jp
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1100 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1101 (looking-at "\\\\[bB]igl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1102 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1103 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1104 "[" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r]"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1105 (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1106 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1107 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1108 (looking-at "\\\\[bB]iggl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1109 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1110 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1111 "[" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r]"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1112 (forward-char -7)) ;matsu's hack ends here
36
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1113 ((and (= (preceding-char) ?\\ )
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1114 (/= (char-after (- (point) 2)) ?\\ )
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1115 (not (YaTeX-in-math-mode-p)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1116 (insert last-command-char "\n")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1117 (indent-to (max 0 col))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1118 (insert "\\]")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1119 (beginning-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1120 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1121 (delete-region (point) (progn (beginning-of-line) (point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1122 (indent-to (+ YaTeX-environment-indent (max 0 col)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1123 (or YaTeX-auto-math-mode YaTeX-math-mode (YaTeX-toggle-math-mode 1)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1124 ((YaTeX-closable-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1125 (insert "[]")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1126 (backward-char 1))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1127 (t (YaTeX-self-insert arg)))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1128
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1129 (defun YaTeX-insert-brackets-region (beg end)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1130 (interactive "r")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1131 (YaTeX-insert-braces-region beg end "[" "]"))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1132
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1133 (defun YaTeX-insert-parens (arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1134 "Insert parenthesis pair."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1135 (interactive "p")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1136 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1137 ((YaTeX-jmode) (YaTeX-self-insert arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1138 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1139 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1140 (and (> (- (point) (point-min)) 5) (forward-char -5))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1141 (looking-at "\\\\left"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1142 (insert "(\\right)")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1143 (forward-char -7))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1144 ((save-excursion ;from matsu@math.s.chiba-u.ac.jp
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1145 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1146 (looking-at "\\\\[bB]igl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1147 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1148 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1149 "(" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r)"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1150 (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1151 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1152 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1153 (looking-at "\\\\[bB]iggl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1154 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1155 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1156 "(" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r)"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1157 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1158 ((= (preceding-char) ?\\ ) ;matsu's hack ends here
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1159 (insert "(\\)")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1160 (backward-char 2))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1161 ((YaTeX-closable-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1162 (insert "()")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1163 (backward-char 1))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1164 (t (YaTeX-self-insert arg))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1165
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1166 (defun YaTeX-insert-parens-region (beg end)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1167 (interactive "r")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1168 (YaTeX-insert-braces-region beg end "(" ")"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1169
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1170 (defun YaTeX-insert-bar (arg)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1171 "Insert bar pair."
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1172 (interactive "p")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1173 (cond
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1174 ((YaTeX-jmode) (YaTeX-self-insert arg))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1175 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1176 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1177 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1178 (looking-at "\\\\left"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1179 (insert "|\\right|")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1180 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1181 ((save-excursion ;from matsu@math.s.chiba-u.ac.jp
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1182 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1183 (looking-at "\\\\[bB]igl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1184 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1185 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1186 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1187 (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1188 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1189 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1190 (looking-at "\\\\[bB]iggl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1191 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1192 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1193 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1194 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1195 ((save-excursion ; added by Jin <MAF01011@nifty.ne.jp>
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1196 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1197 (looking-at "\\\\left\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1198 (insert "|\\right\\|")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1199 (forward-char -8))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1200 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1201 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1202 (looking-at "\\\\[bB]igl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1203 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1204 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1205 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1206 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1207 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1208 (and (> (- (point) (point-min)) 7) (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1209 (looking-at "\\\\[bB]iggl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1210 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1211 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1212 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1213 (forward-char -8)) ; added by Jin up to here.
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1214 ((= (preceding-char) ?\\ )
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1215 (insert "|\\|")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1216 (backward-char 2))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1217 ; ((and (YaTeX-closable-p)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1218 ; (/= (preceding-char) ?|)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1219 ; (/= (following-char) ?|))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1220 ; (insert "||")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1221 ; (backward-char 1))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1222 (t (YaTeX-self-insert arg))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1223
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1224 (defun YaTeX-insert-dollar ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1225 (interactive)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1226 (if (or (not (YaTeX-closable-p))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1227 (= (preceding-char) 92)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1228 (and (YaTeX-in-math-mode-p)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1229 (or (/= (preceding-char) ?$) (/= (following-char) ?$))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1230 (insert "$")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1231 (insert "$$")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1232 (forward-char -1)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1233 (YaTeX-jmode-off)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1234 (or YaTeX-auto-math-mode YaTeX-math-mode (YaTeX-toggle-math-mode 1))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1235
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1236 (defun YaTeX-insert-dollars-region (beg end)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1237 (interactive "r")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1238 (YaTeX-insert-braces-region beg end "$" "$"))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1239
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1240 (defun YaTeX-insert-amper ()
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1241 (interactive)
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1242 (if (or (string-match YaTeX-array-env-regexp
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1243 (or (YaTeX-inner-environment t) "document"))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1244 (= (preceding-char) 92)
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1245 (YaTeX-literal-p))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1246 (insert "&")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1247 (insert "\\&")))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1248
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1249 (defun YaTeX-version ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1250 "Return string of the version of running YaTeX."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1251 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1252 (message
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1253 (concat "Yet Another tex-mode "
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
1254 (if YaTeX-japan "u–ì’¹v" "`Wild Bird'")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1255 " Revision "
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1256 YaTeX-revision-number)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1257
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1258 (defun YaTeX-typeset-menu (arg &optional char)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1259 "Typeset, preview, visit error and miscellaneous convenient menu.
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1260 Optional second argument CHAR is for non-interactive call from menu."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1261 (interactive "P")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1262 (message
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1263 (concat "J)latex R)egion B)ibtex mk(I)ndex "
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1264 (if (fboundp 'start-process) "K)ill-latex ")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1265 "P)review "
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1266 (and (boundp 'window-system) window-system "S)earch ")
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1267 "V)iewerr L)pr"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1268 (let ((sw (selected-window)) (c (or char (read-char))))
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1269 (require 'yatexprc) ;for Nemacs's bug
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1270 (select-window sw)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1271 (cond
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1272 ((= c ?j) (YaTeX-typeset-buffer))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1273 ((= c ?r) (YaTeX-typeset-region))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1274 ((= c ?b) (YaTeX-call-command-on-file
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1275 bibtex-command "*YaTeX-bibtex*"))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1276 ((= c ?i) (YaTeX-call-command-on-file
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1277 makeindex-command "*YaTeX-makeindex*"))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1278 ((= c ?k) (YaTeX-kill-typeset-process YaTeX-typeset-process))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1279 ((= c ?p) (call-interactively 'YaTeX-preview))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1280 ((= c ?q) (YaTeX-system "lpq" "*Printer queue*"))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1281 ((= c ?v) (YaTeX-view-error))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1282 ((= c ?l) (YaTeX-lpr arg))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1283 ((= c ?m) (YaTeX-switch-mode-menu arg))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1284 ((= c ?b) (YaTeX-insert-string "\\"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1285 ((= c ?s) (YaTeX-xdvi-remote-search arg)))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1286
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1287 (defun YaTeX-%-menu (&optional beg end char)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1288 "Operate %# notation."
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1289 ;;Do not use interactive"r" for the functions which require no mark
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1290 (interactive)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1291 (message "!)Edit-%%#! B)EGIN-END-region L)Edit-%%#LPR")
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1292 (let ((c (or char (read-char))) (string "") key
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1293 (b (make-marker)) (e (make-marker)))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1294 (save-excursion
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1295 (cond
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1296 ((or (= c ?!) (= c ?l)) ;Edit `%#!'
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1297 (goto-char (point-min))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1298 (setq key (cond ((= c ?!) "%#!")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1299 ((= c ?l) "%#LPR")))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1300 (if (re-search-forward key nil t)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1301 (progn
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1302 (setq string (buffer-substring (point) (point-end-of-line)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1303 (delete-region (point) (progn (end-of-line) (point))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1304 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1305 (delete-region (point) (progn (beginning-of-line)(point)));for 19 :-<
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1306 (insert key))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1307 (unwind-protect
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1308 (setq string (read-string (concat key ": ") string))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1309 (insert string)))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1310
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1311 ((= c ?b) ;%#BEGIN %#END region
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1312 (or end (setq beg (min (point) (mark)) end (max (point) (mark))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1313 (set-marker b beg)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1314 (set-marker e end)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1315 (goto-char (point-min))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1316 (while (re-search-forward "^%#\\(BEGIN\\)\\|\\(END\\)$" nil t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1317 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1318 (delete-region (point) (progn (forward-line 1) (point))))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1319 (goto-char b)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1320 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1321 (delete-region (point) (progn (beginning-of-line)(point)));for 19 :-<
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1322 (insert "%#BEGIN")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1323 (goto-char e)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1324 (insert "%#END\n")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1325 (set-marker b nil)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1326 (set-marker e nil))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1327 ))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1328
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1329 (defun YaTeX-goto-corresponding-label (reverse &optional otherwin)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1330 "Jump to corresponding \\label{} and \\ref{} or \\cite and \\bibitem.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1331 The default search direction depends on the command at the cursor position.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1332 When the cursor is on \\ref(\\cite), YaTeX will try to search the
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1333 corresponding \\label(\\bibitem) backward,
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1334 and if it fails search forward again. And when the cursor is
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1335 on \\label(\\bibitem), YaTeX will search the corresponding \\ref(\\cite)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1336 forward at first and secondary backward.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1337 Argument REVERSE non-nil makes the default
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1338 direction rule reverse. Since Search string is automatically set in
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1339 search-last-string, you can repeat search the same label/ref by typing
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1340 \\[isearch-forward] or \\[isearch-backward].
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1341 If optional second argument OTHERWIN is non-nil, move to other window."
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1342
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1343 (let ((scmd "") label direc string blist (p (point)) (cb (current-buffer))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1344 (refcommands "label\\|\\(page\\)?ref\\|cite\\|bibitem")
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1345 (func (function (lambda (string sfunc)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1346 (or
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1347 (funcall sfunc string nil t)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1348 (funcall (if (eq sfunc 're-search-forward)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1349 're-search-backward 're-search-forward)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1350 string nil t))))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1351 (cond
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1352 ((YaTeX-on-section-command-p refcommands)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1353 (setq scmd (cdr (assoc (YaTeX-match-string 1)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1354 '(("label" . "\\(page\\)?ref") ("ref" . "label")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1355 ("pageref" . "label")
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1356 ("cite" . "bibitem") ("bibitem" . "cite")))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1357 (goto-char (match-end 0))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1358 (let ((label (buffer-substring
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1359 (1- (point)) (progn (backward-list 1) (1+ (point))))))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1360 ;(setq string (concat "\\" scmd "{" label "}"))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1361 (setq string (concat "\\\\" scmd "{" (regexp-quote label) "}"))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1362 (setq direc (if (string-match "ref\\|cite" scmd)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1363 're-search-forward 're-search-backward))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1364 (if YaTeX-current-position-register
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1365 (point-to-register YaTeX-current-position-register))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1366 (if reverse (setq direc (if (eq direc 're-search-forward)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1367 're-search-backward 're-search-forward)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1368 (if (funcall func string direc) ;label/ref found!
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1369 (progn
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1370 (if otherwin
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1371 (progn
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1372 (goto-char p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1373 (if (one-window-p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1374 (split-window-calculate-height
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1375 YaTeX-default-pop-window-height))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1376 (select-window (get-lru-window))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1377 (switch-to-buffer cb)))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1378 (goto-char (match-beginning 0))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1379 (push-mark p))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1380 ;;if label/ref not found, search through all yatex buffers.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1381 (goto-char p) ;resume position of current buffer
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1382 (setq blist (YaTeX-yatex-buffer-list))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1383 (catch 'found
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1384 (while blist
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1385 (set-buffer (car blist))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1386 (if (YaTeX-on-section-command-p refcommands)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1387 (goto-char (match-beginning 0)))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1388 (if (funcall func string direc)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1389 (progn
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1390 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1391 (otherwin
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1392 (set-buffer cb)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1393 (goto-char p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1394 (if (one-window-p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1395 (split-window-calculate-height
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1396 YaTeX-default-pop-window-height))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1397 (select-window (get-lru-window))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1398 (switch-to-buffer (car blist)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1399 ((or (get-buffer-window (car blist))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1400 (and YaTeX-emacs-19
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1401 (get-buffer-window (car blist) t)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1402 (goto-buffer-window (car blist)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1403 (t
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1404 (switch-to-buffer (car blist))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1405 (message
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1406 (format "Type %s %c to return to original position."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1407 (key-description
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1408 (car
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1409 (or (where-is-internal 'register-to-point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1410 (where-is-internal 'jump-to-register))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1411 YaTeX-current-position-register))))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1412 (goto-char (match-beginning 0))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1413 (throw 'found t)))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1414 (setq blist (cdr blist)))))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1415 )
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1416 (if YaTeX-emacs-19
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1417 (setq regexp-search-ring
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1418 (cons string (delete string regexp-search-ring)))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1419 (setq search-last-regexp string)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1420 (t nil))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1421
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1422 (defun YaTeX-goto-corresponding-environment (&optional allow-mismatch noerr)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1423 "Go to corresponding begin/end enclosure.
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1424 Optional argument ALLOW-MISMATCH allows mismatch open/clese. Use this
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1425 for \left(, \right).
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1426 Optional third argument NOERR causes no error for unballanced environment."
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1427 (interactive)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1428 (if (not (YaTeX-on-begin-end-p)) nil
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1429 (let ((p (match-end 0)) b0 b1 env (nest 0) regexp re-s (op (point))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1430 (m0 (match-beginning 0)) ;whole matching
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1431 (m1 (match-beginning 1)) ;environment in \begin{}
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1432 (m2 (match-beginning 2))) ;environment in \end{}
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1433 ;(setq env (regexp-quote (buffer-substring p (match-beginning 0))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1434 (if (cond
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1435 (m1 ;if begin{xxx}
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1436 (setq env
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1437 (if allow-mismatch YaTeX-struct-name-regexp
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1438 (regexp-quote (buffer-substring m1 (match-end 1)))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1439 ; (setq regexp (concat "\\(\\\\end{" env "}\\)\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1440 ; "\\(\\\\begin{" env "}\\)"))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1441 (setq regexp
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1442 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1443 "\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1444 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1445 (regexp-quote YaTeX-struct-end) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1446 "\\)\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1447 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1448 (regexp-quote YaTeX-struct-begin) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1449 "\\)"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1450 (setq re-s 're-search-forward))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1451 (m2 ;if end{xxx}
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1452 (setq env
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1453 (if allow-mismatch YaTeX-struct-name-regexp
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1454 (regexp-quote (buffer-substring m2 (match-end 2)))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1455 ; (setq regexp (concat "\\(\\\\begin{" env "}\\)\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1456 ; "\\(\\\\end{" env "}\\)"))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1457 (setq regexp
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1458 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1459 "\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1460 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1461 (regexp-quote YaTeX-struct-begin) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1462 "\\)\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1463 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1464 (regexp-quote YaTeX-struct-end) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1465 "\\)"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1466 (setq re-s 're-search-backward))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1467 (t (if noerr nil (error "Corresponding environment not found."))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1468 (progn
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1469 (while (and (>= nest 0) (funcall re-s regexp nil t))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1470 (setq b0 (match-beginning 0) b1 (match-beginning 1))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1471 (if (or (equal b0 m0)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1472 (YaTeX-literal-p b0))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1473 nil
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1474 (setq nest (if (equal b0 b1)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1475 (1- nest) (1+ nest)))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1476 (if (< nest 0)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1477 (goto-char (match-beginning 0)) ;found.
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1478 (goto-char op)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1479 (funcall
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1480 (if noerr 'message 'error)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1481 "Corresponding environment `%s' not found." env)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1482 (sit-for 1)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1483 nil))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1484
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1485 (defun YaTeX-goto-corresponding-file (&optional other)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1486 "Visit or switch buffer of corresponding file,
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1487 looking at \\input or \\include or \includeonly on current line."
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1488 (if (not (YaTeX-on-includes-p)) nil
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1489 (let ((parent buffer-file-name) input-file)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1490 (save-excursion
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1491 (if (search-forward "{" (point-end-of-line) t)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1492 nil
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1493 (skip-chars-backward "^,{"))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1494 (setq input-file
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1495 (buffer-substring
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1496 (point) (progn (skip-chars-forward "^ ,}") (point))))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1497 (if (not (string-match "\\.\\(tex\\|sty\\)$" input-file))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1498 (setq input-file (concat input-file ".tex"))))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1499 (cond
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1500 (other (YaTeX-switch-to-buffer-other-window input-file))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1501 ((get-file-buffer input-file) (goto-buffer-window input-file))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1502 (t (YaTeX-switch-to-buffer input-file)))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1503 (or (YaTeX-get-builtin "!")
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1504 YaTeX-parent-file
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1505 (setq YaTeX-parent-file parent)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1506
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1507 (defun YaTeX-goto-corresponding-BEGIN-END ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1508 (if (not (YaTeX-on-BEGIN-END-p)) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1509 (if (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1510 ((equal (match-beginning 0) (match-beginning 1)) ;if on %#BEGIN
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1511 (not (search-forward "%#END" nil t)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1512 (t ; if on %#END
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1513 (not (search-backward "%#BEGIN" nil t))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1514 (error "Corresponding %%#BEGIN/END not found."))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1515 (beginning-of-line)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1516 t))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1517
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1518 (defvar YaTeX-processed-file-regexp-alist nil
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1519 "Alist of regexp of processed file regexp vs. its file name part;
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1520 For example, if you include image file with `\\epsfile{file=FILE}' where
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1521 `FILE' is processed file. You might want to view FILE with other previewer
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1522 such as ghostview, or want to preview its source which was drawn with
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1523 other drawing tool, tgif for example. Then you should set entire regexp
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1524 of including expression and enclose its file name part with \\\\( and \\\\).
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1525
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1526 Ex. (\"\\\\\\\\epsfile{[^}]*file=\\\\([^,} ]+\\\\)\\\\(\\\\.e?ps\\\\)?[^}]*}\" 1)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1527
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1528 Where the first group surrounded by \\\\( and \\\\) is the file name part
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1529 of expression. So you should set 1 to second element. And the first
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1530 matching group is sent to (image) processor defined by the variable
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1531 YaTeX-file-processor-alist. See also the documentation of
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1532 YaTeX-file-processor-alist.
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1533
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1534 ª‚¶‚á—Ç‚­‚í‚©‚ñ‚È‚¢‚·‚ËB—Ⴆ‚Î tgif hoge.obj ‚µ‚Ä hoge.eps ‚ð
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1535 \\epsfile{file=hoge.eps} ‚ŃCƒ“ƒNƒ‹[ƒh‚µ‚Ä‚¢‚é‚Æ‚µ‚悤B‚»‚Ìs‚Å
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1536 \[prefix\] g ‚ð‰Ÿ‚µ‚½Žž‚É tgif ‚ð‹N“®‚µ‚Ä—~‚µ‚©‚Á‚½‚çA‚Ü‚¸ã‚̂悤‚È
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1537 ³‹K•\Œ»‚ðÝ’è‚·‚éB\\\\(‚Æ\\\\)‚ň͂ñ‚¾‚Æ‚±‚낪ƒtƒ@ƒCƒ‹–¼‚É‚È‚é‚悤‚É
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1538 ’ˆÓ‚·‚éB‚Ńtƒ@ƒCƒ‹–¼•”•ª‚ª‰½”Ô–Ú‚Ì\\\\(\\\\)‚É‚È‚é‚©‚ðƒŠƒXƒg‚Ì2”Ô–Ú‚É‘‚­B
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1539 ‚·‚é‚ÆA‚»‚Ì•”•ª‚ª•Ï” YaTeX-file-processor-alist ‚Å’è‹`‚³‚ꂽ
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1540 ˆ—ƒvƒƒOƒ‰ƒ€‚É“n‚³‚ê‚éB‚Æ‚¢‚¤‚킯B
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1541 ‚ñ`‚â‚Á‚Ï‚è‚Þ‚¸‚©‚µ‚¢‚ËB•ª‚©‚ç‚È‚¢Žž‚Í—×‚Ì Lisper ‚É•·‚­‚©A
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1542 fj–ì’¹‚̉ï‚Å•·‚±‚¤!
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1543 ")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1544
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1545 (defvar YaTeX-processed-file-regexp-alist-default
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1546 '(("\\\\epsfile\\(\\[[^]]+\\]\\)?{[^},]*file=\\(\\([^,} ]*/\\)?[^,}. ]+\\)\\(\\.e?ps\\)?[^}]*}" 2)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1547 ("\\\\epsfig{[^},]*fi\\(le\\|gure\\)=\\(\\([^,} ]*/\\)?[^,}. ]+\\)\\(\\.e?ps\\)?[^}]*}" 2)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1548 ("\\\\postscriptbox{[^}]*}{[^}]*}{\\(\\([^,} ]*/\\)?[^}. ]+\\)\\(\\.e?ps\\)?}" 1)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1549 ("\\\\\\(epsfbox\\|includegraphics\\|epsfig\\)\\*?{\\(\\([^,} ]*/\\)?[^}. ]+\\)\\(\\.e?ps\\)?}" 2) ;\epsfbox{hoge.ps} or \includegraphics{hoge.eps}
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1550 ("\\\\\\(psbox\\)\\(\\[[^]]+\\]\\)?{\\(\\([^,} ]*/\\)?[^} ]+\\)\\(\\.e?ps\\)}" 3) ;\psbox[options...]{hoge.eps} (97/1/11)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1551 ("\\\\input{\\([^} ]+\\)\\(\\.tps\\)}" 1) ;tgif2tex (1998/9/16)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1552 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1553 "See the documentation of YaTeX-processed-file-regexp-alist.")
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1554
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1555 (defvar YaTeX-file-processor-alist nil
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1556 "*Alist of files' processor vs. its extension;
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1557 See also the documentation of YaTeX-processed-file-regexp-alist.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1558
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1559 (defvar YaTeX-file-processor-alist-default
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1560 '(("tgif" . ".obj")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1561 ("ghostview" . ".ps")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1562 ("ghostview" . ".eps")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1563 (t . ".tex")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1564 (t . ".sty")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1565 (t . ""))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1566 "See the documentation of YaTeX-file-processor-alist.")
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1567
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1568 (defun YaTeX-goto-corresponding-file-processor (&optional other)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1569 "Execute corresponding file processor."
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1570 (save-excursion
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1571 (or (looking-at YaTeX-ec-regexp)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1572 (skip-chars-backward (concat "^" YaTeX-ec) (point-beginning-of-line)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1573 (let ((list (append YaTeX-processed-file-regexp-alist
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1574 YaTeX-processed-file-regexp-alist-default))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1575 (p (point)) flist file
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1576 (peol (point-end-of-line)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1577 (setq flist (catch 'found
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1578 (while list
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1579 (goto-char p)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1580 (if (re-search-forward (car (car list)) peol t)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1581 (progn
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1582 (setq file (YaTeX-match-string
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1583 (car (cdr (car list)))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1584 (throw 'found (cdr (car list)))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1585 (setq list (cdr list)))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1586 (if flist ;if pattern and file name found
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1587 (let*((plist (append YaTeX-file-processor-alist
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1588 YaTeX-file-processor-alist-default))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1589 (plist0 plist)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1590 ext cmd src buf (alt (car (cdr flist))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1591 (if (and (re-search-forward
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1592 (concat YaTeX-comment-prefix "\\s *\\(.*\\)$") peol t)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1593 (assoc (setq cmd (YaTeX-match-string 1))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1594 YaTeX-file-processor-alist))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1595 (setq src ;if processor is specified
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1596 (concat file
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1597 (cdr (assoc cmd YaTeX-file-processor-alist))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1598 (while plist ;if processor is not specified
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1599 (setq ext (cdr (car plist)))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1600 (if (and (string< "" (concat file ext))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1601 (file-exists-p (concat file ext)))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1602 (setq cmd (car (car plist))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1603 src (concat file ext) plist nil))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1604 (setq plist (cdr plist)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1605 (if (and (null src) alt YaTeX-create-file-prefix-g)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1606 (setq cmd alt
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1607 src (concat file (cdr (assoc alt plist0))))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1608 (if src ;if processor and src file found
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1609 (cond
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1610 ((stringp cmd)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1611 (let ((buf (concat "* " cmd " " src " *")))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1612 (YaTeX-system (concat cmd " " src) buf)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1613 t))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1614 ((eq t cmd)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1615 (let ((parent buffer-file-name))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1616 (funcall
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1617 (cond
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1618 (other 'YaTeX-switch-to-buffer-other-window)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1619 ((get-file-buffer src) 'goto-buffer-window)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1620 (t 'YaTeX-switch-to-buffer))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1621 src)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1622 (or (YaTeX-get-builtin "!")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1623 YaTeX-parent-file
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1624 (setq YaTeX-parent-file parent))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1625 t))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1626 ((symbolp cmd)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1627 (cond
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1628 ((symbol-function cmd)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1629 (funcall cmd src other)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1630 t))))))))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1631
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1632 (defun YaTeX-on-section-command-p (command)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1633 "Check if point is on the LaTeX command: COMMAND(regexp).
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1634 Return nil if point is not on it. Otherwise return the
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1635 number of argument position.
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1636 Section command name is stored in match-data #1."
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1637 (let ((p (point)) md (parg 0) (argc 1) word (grouping 0) (i 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1638 (while (setq i (string-match "\\\\(" command i))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1639 (setq grouping (1+ grouping) i (+ i 2)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1640 (save-excursion
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1641 (if (looking-at YaTeX-ec-regexp) nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1642 (catch 'found ;caught value has no meaning
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1643 (while t
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1644 (if (bobp) (throw 'found nil))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1645 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1646 ((looking-at YaTeX-ec-regexp) (throw 'found t))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1647 ((looking-at "[[{]") nil)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1648 ((looking-at "[]}]")(condition-case nil (up-list -1) (error nil)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1649 (t (skip-chars-backward " \t\r\n")))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1650 (skip-chars-backward (concat "^ \t\r\n{}[]" YaTeX-ec-regexp))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1651 (or (bobp) (forward-char -1)))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1652 (if (and
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1653 (looking-at (concat YaTeX-ec-regexp "\\(" command "\\)"
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1654 "\\(\\(\\[[^]]+\\]\\)*\\)" ;optional arg
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1655 ;"[ \t\n\r]*{[^}]+}")) ;arg braces
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1656 "[ \t\n\r]*{[^}]*}")) ;arg braces
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1657 (not (YaTeX-lookup-table
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1658 (setq word (YaTeX-match-string 1)) 'singlecmd)))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1659 (progn
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1660 (setq md (match-data))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1661 (skip-chars-forward "^{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1662 (if (<= (point) p) (setq parg (1+ parg)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1663 (setq argc
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1664 (or (car (cdr (YaTeX-lookup-table word 'section)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1665 argc))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1666 (while (and (>= (setq argc (1- argc)) 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1667 (progn (skip-chars-forward " \t\n\r")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1668 (looking-at "{")))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1669 (forward-list 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1670 (if (<= (point) p) (setq parg (1+ parg))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1671 (store-match-data md)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1672 (setq i (+ 2 grouping))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1673 (if (and (match-beginning i)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1674 (>= p (match-beginning i)) (< p (match-end i)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1675 -1 ;return -1 if point is on optional arg
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1676 (if (< p (point)) parg))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1677 )))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1678
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1679 (defun YaTeX-on-maketitle-p ()
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1680 "Check if point is on maketitle type commands.
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1681 Call this function after YaTeX-on-section-command-p."
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1682 (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1683 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1684 (or (= (char-after (point)) ?\\ )
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1685 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1686 (skip-chars-backward
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1687 (concat "^" YaTeX-ec-regexp) (point-beginning-of-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1688 (or (bobp) (bolp) (backward-char 1))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1689 (and (looking-at (concat YaTeX-ec-regexp YaTeX-TeX-token-regexp))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1690 (<= (match-beginning 0) p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1691 (> (match-end 0) p)))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1692
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1693 (defun YaTeX-on-begin-end-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1694 (save-excursion
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1695 (beginning-of-line)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1696 (re-search-forward
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1697 ;;"\\\\begin{\\([^}]+\\)}\\|\\\\end{\\([^}]+\\)}"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1698 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1699 (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1700 (regexp-quote YaTeX-struct-begin)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1701 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" "")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1702 "\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1703 (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1704 (regexp-quote YaTeX-struct-end)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1705 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" ""))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1706 (point-end-of-line) t)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1707
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1708 (defun YaTeX-on-includes-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1709 (save-excursion
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1710 (beginning-of-line)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1711 (re-search-forward "\\(\\(include.*\\)\\|\\(input\\)\\){.*}"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1712 (point-end-of-line) t)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1713
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1714 (defun YaTeX-on-comment-p (&optional sw)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1715 "Return t if current line is commented out.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1716 Optional argument SW t to treat all `%' lines as comment,
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1717 even if on `%#' notation."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1718 (save-excursion
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1719 (beginning-of-line)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1720 (skip-chars-forward "\\s ")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1721 (looking-at (if sw "%" "%[^#]"))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1722
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1723 (defun YaTeX-on-BEGIN-END-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1724 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1725 (let ((case-fold-search nil))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1726 (beginning-of-line)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1727 (re-search-forward
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1728 "\\(%#BEGIN\\)\\|\\(%#END\\)" (point-end-of-line) t))))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1729
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1730 (defun YaTeX-goto-corresponding-* (arg)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1731 "Parse current line and call suitable function."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1732 (interactive "P")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1733 (cond
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1734 ((YaTeX-goto-corresponding-label arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1735 ((YaTeX-goto-corresponding-environment))
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
1736 ((YaTeX-goto-corresponding-file-processor arg))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1737 ((YaTeX-goto-corresponding-file arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1738 ((YaTeX-goto-corresponding-BEGIN-END))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1739 ((and (string-match
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1740 YaTeX-equation-env-regexp ;to delay loading
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1741 (or (YaTeX-inner-environment t) "document"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1742 (YaTeX-goto-corresponding-leftright)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1743 (t (message "I don't know where to go."))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1744
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1745 (defun YaTeX-goto-corresponding-*-other-window (arg)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1746 "Parse current line and call suitable function."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1747 (interactive "P")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1748 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1749 ((YaTeX-goto-corresponding-label arg t))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1750 ;;((YaTeX-goto-corresponding-environment))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1751 ((YaTeX-goto-corresponding-file t))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1752 ;;((YaTeX-goto-corresponding-BEGIN-END))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1753 (t (message "I don't know where to go."))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1754
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1755 (defun YaTeX-comment-region (alt-prefix)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1756 "Comment out region by '%'.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1757 If you call this function on the 'begin{}' or 'end{}' line,
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1758 it comments out whole environment"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1759 (interactive "P")
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1760 (if (not (YaTeX-on-begin-end-p))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1761 (comment-out-region
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1762 (if alt-prefix
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1763 (read-string "Insert prefix: ")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1764 YaTeX-comment-prefix))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1765 (YaTeX-comment-uncomment-env 'comment-out-region)))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1766
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1767 (defun YaTeX-uncomment-region (alt-prefix)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1768 "Uncomment out region by '%'."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1769 (interactive "P")
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1770 (if (not (YaTeX-on-begin-end-p))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1771 (uncomment-region
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1772 (if alt-prefix (read-string "Remove prefix: ")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1773 YaTeX-comment-prefix)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1774 (region-beginning) (region-end) YaTeX-uncomment-once)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1775 (YaTeX-comment-uncomment-env 'uncomment-region)))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1776
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1777 (defun YaTeX-comment-uncomment-env (func)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1778 "Comment or uncomment out one LaTeX environment switching function by FUNC."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1779 (let (beg (p (point)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1780 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1781 (beginning-of-line)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1782 (setq beg (point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1783 (YaTeX-goto-corresponding-environment)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1784 (beginning-of-line)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1785 (if (> p (point)) (setq beg (1+ beg)) (forward-char 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1786 (funcall func YaTeX-comment-prefix beg (point) YaTeX-uncomment-once)))
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
1787 (message "%sommented out current environment."
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1788 (if (eq func 'comment-out-region) "C" "Un-c")))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1789
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1790 (defun YaTeX-beginning-of-environment (&optional limit-search-bound end)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1791 "Goto the beginning of the current environment.
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1792 Optional argument LIMIT-SEARCH-BOUND non-nil limits the search bound to
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1793 most recent sectioning command. Non-nil for optional third argument END
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1794 goes to end of environment."
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1795 (interactive)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1796 (let ((op (point)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1797 (if (YaTeX-inner-environment limit-search-bound)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1798 (progn
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1799 (goto-char (get 'YaTeX-inner-environment 'point))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1800 (and end (YaTeX-goto-corresponding-environment))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1801 (if (interactive-p) (push-mark op))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1802 t))))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1803
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1804 (defun YaTeX-end-of-environment (&optional limit-search-bound)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1805 "Goto the end of the current environment.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1806 Optional argument LIMIT-SEARCH-BOUND non-nil limits the search bound
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1807 to most recent sectioning command."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1808 (interactive)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1809 (YaTeX-beginning-of-environment limit-search-bound t))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1810
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1811 (defun YaTeX-mark-environment ()
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1812 "Mark current position and move point to end of environment."
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1813 (interactive)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1814 (let ((curp (point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1815 (if (and (YaTeX-on-begin-end-p) (match-beginning 1)) ;if on \\begin
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1816 (forward-line 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1817 (beginning-of-line))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1818 (if (not (YaTeX-end-of-environment)) ;arg1 turns to match-beginning 1
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1819 (progn
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1820 (goto-char curp)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1821 (error "Cannot found the end of current environment."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1822 (YaTeX-goto-corresponding-environment)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1823 (beginning-of-line) ;for confirmation
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1824 (if (< curp (point))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1825 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1826 (message "Mark this environment?(y or n): ")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1827 (if (= (read-char) ?y) nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1828 (goto-char curp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1829 (error "Abort. Please call again at more proper position."))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1830 (set-mark-command nil)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1831 (YaTeX-goto-corresponding-environment)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1832 (end-of-line)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1833 (if (eobp) nil (forward-char 1)))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1834
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1835 (defun YaTeX-comment-paragraph ()
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1836 "Comment out current paragraph."
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1837 (interactive)
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1838 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1839 (cond
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1840 ((YaTeX-on-begin-end-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1841 (beginning-of-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1842 (insert YaTeX-comment-prefix)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1843 (YaTeX-goto-corresponding-environment)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1844 (beginning-of-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1845 (insert YaTeX-comment-prefix))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1846 ((YaTeX-on-comment-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1847 (message "Already commented out."))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1848 (t
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1849 (mark-paragraph)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1850 (if (looking-at paragraph-separate) (forward-line 1))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1851 (comment-out-region "%")))))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1852
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1853 (defun YaTeX-uncomment-paragraph ()
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1854 "Uncomment current paragraph."
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1855 (interactive)
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1856 (save-excursion
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1857 (if (YaTeX-on-begin-end-p)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1858 (let ((p (point-marker)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1859 (YaTeX-goto-corresponding-environment)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1860 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1861 (goto-char p)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1862 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1863 (set-marker p nil))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1864 (if (YaTeX-on-comment-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1865 (let*((fill-prefix "")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1866 ;;append `^%' to head of paragraph delimiter.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1867 (paragraph-start
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1868 (concat
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
1869 "^$\\|^%\\(" YaTeX-paragraph-separate "\\)"))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1870 (paragraph-separate paragraph-start))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1871 (mark-paragraph)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1872 (if (not (bobp)) (forward-line 1))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1873 (uncomment-region "%" nil nil YaTeX-uncomment-once))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1874 (message "This line is not a comment line.")))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1875
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1876 (defun YaTeX-remove-prefix (prefix &optional once)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1877 "Remove prefix on current line as far as prefix detected. But
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1878 optional argument ONCE makes deletion once."
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1879 (interactive "sPrefix:")
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1880 (beginning-of-line)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1881 (while (re-search-forward (concat "^" prefix) (point-end-of-line) t)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1882 (replace-match "")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1883 (if once (end-of-line))))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1884
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1885 (defun YaTeX-kill-some-pairs (predicate gofunc kill-contents)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1886 "Kill some matching pair.
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1887 This function assumes that pairs occupy whole of each line where they resid."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1888 (if (not (funcall predicate)) nil
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1889 (let ((b1 (match-beginning 0)) (e1 (match-end 0))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1890 b2 e2)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1891 (save-excursion
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1892 (funcall gofunc)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1893 (funcall predicate) ;get match data
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1894 (if (< (point) e1) ;if currently on begin-line
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1895 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1896 (setq b2 b1 e2 e1
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1897 b1 (match-beginning 0) e1 (match-end 0))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1898 (goto-char e2)) ;goto end-line's end
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1899 (setq b2 (match-beginning 0)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1900 e2 (match-end 0))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1901 (goto-char e2)) ;now e2 has surely end-line's end
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1902 (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1903 (and (eolp)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1904 (not (eobp))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1905 (setq e2 (1+ (point))))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1906 (if (not kill-contents)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1907 (kill-region
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1908 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1909 (goto-char b2)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1910 (skip-chars-backward " \t%")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1911 (if (bolp) (point) b2))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1912 e2))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1913 (goto-char b1)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1914 (skip-chars-backward " \t%")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1915 (if (not kill-contents)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1916 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1917 (kill-append
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1918 (buffer-substring
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1919 (setq b1 (if (bolp) (point) b1))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1920 (setq e1
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1921 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1922 (goto-char e1)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1923 (while (looking-at "{\\| \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1924 (forward-list 1))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1925 (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1926 (if (and (eolp) (not (eobp)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1927 (1+ (point))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1928 (point)))))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1929 t)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1930 (delete-region b1 e1))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1931 (kill-region
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1932 (if (bolp) (point) b1)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1933 e2)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1934 t)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1935
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1936 (defun YaTeX-kill-section-command (point kill-all)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1937 "Kill section-type command at POINT leaving its argument.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1938 Non-nil for the second argument kill its argument too."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1939 (let (beg (end (make-marker)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1940 (save-excursion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1941 (goto-char point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1942 (or (looking-at YaTeX-ec-regexp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1943 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1944 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1945 (forward-char -1)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1946 (setq beg (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1947 (skip-chars-forward "^{")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1948 (forward-list 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1949 (set-marker end (point))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1950 (if kill-all (kill-region beg end)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1951 (goto-char beg)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1952 (kill-region
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1953 (point) (progn (skip-chars-forward "^{" end) (1+ (point))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1954 (goto-char end)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1955 (set-marker end nil)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1956 (kill-append (buffer-substring (point) (1- (point))) nil)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1957 (delete-backward-char 1)))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1958
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1959 (defun YaTeX-kill-paren (kill-contents)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1960 "Kill parentheses leaving its contents.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1961 But kill its contents if the argument KILL-CONTENTS is non-nil."
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1962 (save-excursion
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1963 (let (p)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1964 (if (looking-at "\\s(\\|\\(\\s)\\)")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1965 (progn
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1966 (if (match-beginning 1)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1967 (up-list -1))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1968 (setq p (point))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1969 (forward-list 1)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1970 (if kill-contents (delete-region p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1971 (backward-delete-char 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1972 (goto-char p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1973 (if (looking-at
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1974 (concat "{" YaTeX-ec-regexp
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1975 YaTeX-command-token-regexp "+"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1976 "\\s +"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1977 (delete-region
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1978 (point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1979 (progn (re-search-forward "\\s +" nil t) (point)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1980 (delete-char 1)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1981 t)))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1982
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1983 (defvar YaTeX-read-environment-history nil "Holds history of environments.")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1984 (put 'YaTeX-read-environment-history 'no-default t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1985 (defun YaTeX-read-environment (prompt &optional predicate must-match initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1986 "Read a LaTeX environment name with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1987 (YaTeX-sync-local-table 'tmp-env-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1988 (completing-read-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1989 prompt
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1990 (append tmp-env-table user-env-table env-table)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1991 predicate must-match initial
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1992 'YaTeX-read-environment-history))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1993
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1994 (defvar YaTeX-read-section-history nil "Holds history of section-types.")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1995 (put 'YaTeX-read-section-history 'no-default t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1996 (defun YaTeX-read-section (prompt &optional predicate initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1997 "Read a LaTeX section-type command with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1998 (YaTeX-sync-local-table 'tmp-section-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1999 (let ((minibuffer-completion-table
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2000 (append tmp-section-table user-section-table section-table)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2001 (read-from-minibuffer-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2002 prompt initial YaTeX-section-completion-map nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2003 'YaTeX-read-section-history)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2004
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2005 (defun YaTeX-read-section-with-overview ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2006 "Read sectioning command with overview.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2007 This function refers a local variable `source-window' in YaTeX-make-section"
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2008 (interactive)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2009 (require 'yatexsec) ;some case needs this
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2010 (if (> (minibuffer-depth) 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2011 (error "Too many minibuffer levels for overview."))
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2012 (let ((sw (selected-window))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2013 (minibuffer-max-depth nil) ; for XEmacs20
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2014 (enable-recursive-minibuffers t) sect)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2015 (unwind-protect
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2016 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2017 (select-window source-window)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2018 (setq sect (YaTeX-read-section-in-minibuffer
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2019 "Sectioning(Up=C-p, Down=C-n, Help=?): "
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2020 YaTeX-sectioning-level (YaTeX-section-overview))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2021 (select-window sw))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2022 (if (eq (selected-window) (minibuffer-window))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2023 (erase-buffer))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2024 (insert sect)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2025 (exit-minibuffer)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2026
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2027 (defvar YaTeX-read-fontsize-history nil "Holds history of font designator.")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2028 (put 'YaTeX-read-fontsize-history 'no-default t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2029 (defun YaTeX-read-fontsize (prompt &optional predicate must-match initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2030 "Read a LaTeX font changing command with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2031 (YaTeX-sync-local-table 'tmp-fontsize-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2032 (completing-read-with-history
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2033 prompt (append tmp-fontsize-table user-fontsize-table fontsize-table)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2034 predicate must-match initial 'YaTeX-read-fontsize-history))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2035
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2036 (defun YaTeX-change-environment ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2037 "Change the name of environment."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2038 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2039 (if (not (YaTeX-on-begin-end-p)) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2040 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2041 (let (p env (m1 (match-beginning 1)) (m2 (match-beginning 2)))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2042 (setq env (if m1 (buffer-substring m1 (match-end 1))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2043 (buffer-substring m2 (match-end 2))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
2044 (goto-char (match-beginning 0))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2045 (set-mark-command nil)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2046 (YaTeX-goto-corresponding-environment)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2047 (setq newenv (YaTeX-read-environment
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2048 (format "Change environment `%s' to: " env)))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2049 (cond
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2050 ((string= newenv "") (message "Change environment cancelled."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2051 ((string= newenv env) (message "No need to change."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2052 (t
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2053 (search-forward (concat "{" env) (point-end-of-line) t)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2054 (replace-match (concat "{" newenv) t)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2055 (exchange-point-and-mark)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2056 (search-forward (concat "{" env) (point-end-of-line) t)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2057 (replace-match (concat "{" newenv) t)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2058 t))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2059
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2060 (defun YaTeX-change-section ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2061 "Change section-type command."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2062 (interactive)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2063 (let*((where (YaTeX-on-section-command-p YaTeX-command-token-regexp))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2064 (p (point)) (cmd (YaTeX-match-string 1)) beg end old new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2065 (if (null where) nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2066 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2067
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2068 ((equal where 0);;if point is on section command
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2069 (setq beg (match-beginning 1)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2070 end (match-end 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2071 (goto-char beg) ;beginning of the command
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2072 (setq new (YaTeX-read-section (format "Change `%s' to: " cmd) nil)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2073
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2074 ((= where -1);;if point is on a optional parameter
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2075 (setq beg (match-beginning 2))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2076 (skip-chars-forward "^{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2077 (setq end (point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2078 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2079 (setq new
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2080 (if (fboundp (intern-soft (concat YaTeX-addin-prefix cmd)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2081 (YaTeX-addin cmd)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2082 (concat "["
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2083 (read-string (format "Change `%s' to: "
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2084 (buffer-substring
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2085 (1+ beg) (1- end))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2086 "]"))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2087
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2088 ((> where 0);;if point is in arguments' braces
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2089 (or (looking-at "{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2090 (progn (skip-chars-backward "^{") (forward-char -1)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2091 (setq beg (1+ (point)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2092 (forward-list 1)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2093 (forward-char -1)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2094 (setq end (point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2095 old (buffer-substring beg end))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2096 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2097 (if (> (length old) 40)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2098 (setq old (concat (substring old 0 12) "..." (substring old -12))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2099 (setq new
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2100 (if (intern-soft (concat "YaTeX::" cmd))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2101 (funcall (intern-soft (concat "YaTeX::" cmd)) where)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2102 (read-string (format "Change `%s' to: " old)))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2103 );cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2104 (delete-region beg end)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2105 (goto-char beg)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2106 (insert-before-markers new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2107 ;;(goto-char (marker-position p))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2108 new)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2109
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2110 (defun YaTeX-change-fontsize ()
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2111 "Change large-type command."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2112 (let ((lt (append tmp-fontsize-table user-fontsize-table fontsize-table))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2113 (p (point)) large old new beg end)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2114 ;;(and (looking-at "}") (up-list -1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2115 ;;(and (looking-at "{") (forward-char 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2116 ;;Is above convenient?
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2117 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2118 (or (looking-at YaTeX-ec-regexp)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2119 (progn
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2120 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2121 (forward-char -1)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2122 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2123 ((and
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2124 (looking-at
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2125 (concat YaTeX-ec-regexp "\\(" YaTeX-TeX-token-regexp "\\)"))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2126 (< p (match-end 0))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2127 (assoc (setq old (YaTeX-match-string 1)) lt))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2128 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2129 (setq beg (match-beginning 1) end (match-end 1) ;save match position
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2130 new (completing-read
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2131 (format "Change font/size `%s' to : " old) lt))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2132 (delete-region beg end)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2133 (goto-char beg)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2134 (insert-before-markers new)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2135 new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2136 (t nil)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2137 ))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2138
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2139 (defun YaTeX-change-math-image ()
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2140 "Change with image completion."
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2141 (let (maketitle memberp beg end)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2142 (if (and (YaTeX-on-maketitle-p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2143 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2144 (setq maketitle (substring (YaTeX-match-string 0) 1))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2145 (setq memberp (YaTeX-math-member-p maketitle))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2146 (let ((last-command-char (string-to-char (car memberp))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2147 (setq beg (match-beginning 0) end (match-end 0))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2148 (delete-region beg end)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2149 (YaTeX-math-insert-sequence t (cdr memberp))))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2150
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2151 (defun YaTeX-kill-* (&optional arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2152 "Parse current line and call suitable function.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2153 Non-nil for ARG kills its contents too."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2154 (interactive "P")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2155 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2156 ((YaTeX-kill-some-pairs 'YaTeX-on-begin-end-p
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2157 'YaTeX-goto-corresponding-environment arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2158 ((YaTeX-kill-some-pairs 'YaTeX-on-BEGIN-END-p
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2159 'YaTeX-goto-corresponding-BEGIN-END arg))
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
2160 ((YaTeX-on-section-command-p YaTeX-command-token-regexp);on any command
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2161 (YaTeX-kill-section-command (match-beginning 0) arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2162 ((YaTeX-kill-paren arg))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2163 (t (message "I don't know what to kill."))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2164
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2165 (defun YaTeX-change-* ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2166 "Parse current line and call suitable function."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2167 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2168 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2169 ((YaTeX-change-environment))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2170 ((YaTeX-change-section))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2171 ((YaTeX-change-fontsize))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2172 ((YaTeX-change-math-image))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2173 ((YaTeX-change-parentheses))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2174 (t (message "I don't know what to change."))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2175
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2176 ;;;
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2177 ;Check availability of add-in functions
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2178 ;;;
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2179 (cond
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2180 ((featurep 'yatexadd) nil) ;Already provided.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2181 ((progn (load "yatexadd" t) (featurep 'yatexadd)) nil)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2182 (t (message "YaTeX add-in functions not supplied.")))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2183
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2184 (defun YaTeX-addin (name)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2185 "Check availability of addin function and call it if exists."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2186 (if (and (not (get 'YaTeX-generate 'disabled))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2187 (intern-soft (concat YaTeX-addin-prefix name))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2188 (fboundp (intern-soft (concat YaTeX-addin-prefix name))))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2189 (let ((s (funcall (intern (concat YaTeX-addin-prefix name)))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2190 (if (stringp s) s ""))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2191 "")) ;Add in function is not bound.
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2192
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2193
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2194 (defun YaTeX-on-item-p (&optional point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2195 "Return t if POINT (default is (point)) is on \\item."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2196 (let ((p (or point (point))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2197 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2198 (goto-char p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2199 (end-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2200 (setq p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2201 (re-search-backward YaTeX-paragraph-delimiter nil t)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2202 (re-search-forward YaTeX-item-regexp p t))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2203
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2204 (defun YaTeX-in-verb-p (&optional point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2205 "Check if POINT is in verb or verb*. Default of POINT is (point)."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2206 (setq point (or point (point)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2207 (save-excursion
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2208 (goto-char point)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2209 (if (not (re-search-backward
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2210 (concat YaTeX-ec-regexp
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2211 "\\(" YaTeX-verb-regexp "\\)"
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2212 "\\([^-A-Za-z_*]\\)")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2213 (point-beginning-of-line) t))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2214 nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2215 (goto-char (match-end 2))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2216 (skip-chars-forward
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2217 (concat "^" (buffer-substring (match-beginning 2) (match-end 2))))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2218 (and (< (match-beginning 2) point) (< (1- point) (point))))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2219
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2220 (defun YaTeX-literal-p (&optional point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2221 "Check if POINT is in verb or verb* or verbatime environment family.
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2222 Default of POINT is (point)."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2223 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2224 ((equal YaTeX-ec "\\") ;maybe LaTeX
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2225 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2226 (and point (goto-char point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2227 (or (YaTeX-in-verb-p (point))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2228 (and (not (looking-at "\\\\end{verb"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2229 (YaTeX-quick-in-environment-p YaTeX-verbatim-environments)))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2230
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2231 (defun YaTeX-in-environment-p (env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2232 "Return if current LaTeX environment is ENV.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2233 ENV is given in the form of environment's name or its list."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2234 (let ((md (match-data)) (nest 0) p envrx)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2235 (cond
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2236 ((atom env)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2237 (setq envrx
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2238 (concat "\\("
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2239 (regexp-quote
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2240 (YaTeX-replace-format-args
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2241 YaTeX-struct-begin env "" ""))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2242 "\\)\\|\\("
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2243 (regexp-quote
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2244 (YaTeX-replace-format-args
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2245 YaTeX-struct-end env "" ""))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2246 "\\)"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2247 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2248 (setq p (catch 'open
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2249 (while (YaTeX-re-search-active-backward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2250 envrx YaTeX-comment-prefix nil t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2251 (if (match-beginning 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2252 (setq nest (1+ nest))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2253 (setq nest (1- nest)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2254 (if (< nest 0) (throw 'open t)))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2255 ((listp env)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2256 (setq p
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2257 (or (YaTeX-in-environment-p (car env))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2258 (and (cdr env) (YaTeX-in-environment-p (cdr env)))))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2259 (store-match-data md)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2260 p;(or p (YaTeX-in-verb-p (match-beginning 0)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2261 ))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2262
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2263 (defun YaTeX-quick-in-environment-p (env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2264 "Check quickly but unsure if current environment is ENV.
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2265 ENV is given in the form of environment's name or its list.
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2266 This function returns correct result only if ENV is NOT nested."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2267 (save-excursion
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2268 (let ((md (match-data)) (p (point)) rc clfound)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2269 (cond
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2270 ((listp env)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2271 (or (YaTeX-quick-in-environment-p (car env))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2272 (and (cdr env) (YaTeX-quick-in-environment-p (cdr env)))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2273 (t
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2274 (if (YaTeX-search-active-backward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2275 (YaTeX-replace-format-args YaTeX-struct-begin env "" "")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2276 YaTeX-comment-prefix nil t)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2277 (setq rc (not (YaTeX-search-active-forward
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2278 (YaTeX-replace-format-args
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2279 YaTeX-struct-end env)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2280 YaTeX-comment-prefix p t nil))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2281 (store-match-data md)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2282 rc)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2283
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2284 ;; Filling \item
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2285 (defun YaTeX-remove-trailing-comment (start end)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2286 "Remove trailing comment from START to end."
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2287 (save-excursion
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2288 (let ((trcom (concat YaTeX-comment-prefix "$")))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2289 (goto-char start)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2290 (while (re-search-forward trcom end t)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
2291 (if (/= (char-after (1- (match-beginning 0))) ?\\ )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2292 (replace-match "\\1"))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2293
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2294 (defun YaTeX-get-item-info (&optional recent thisenv)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2295 "Return the list of the beginning of \\item and column of its item.
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2296 If it seems to be outside of itemizing environment, just return nil.
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2297 Non-nil for optional argument RECENT refers recent \\item.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2298 Optional second argument THISENV omits calling YaTeX-inner-environment."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2299 (save-excursion
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2300 (let* ((p (point)) env e0 c
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2301 (bndry (and (setq env (or thisenv (YaTeX-inner-environment t)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2302 (get 'YaTeX-inner-environment 'point)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2303 )))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2304 (end-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2305 (if (if recent
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2306 (YaTeX-re-search-active-backward
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2307 YaTeX-item-regexp YaTeX-comment-prefix bndry t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2308 (goto-char bndry)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2309 (YaTeX-re-search-active-forward
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2310 YaTeX-item-regexp YaTeX-comment-prefix p t))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2311 (progn
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2312 (goto-char (match-end 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2313 ;(setq c (current-column))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2314 (if (string-match "desc" env)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2315 (setq c 6)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2316 (if (equal (following-char) ?\[) (forward-list 1))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2317 (setq c 0))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2318 (skip-chars-forward " \t" (point-end-of-line))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2319 (list (point-beginning-of-line) (+ c (current-column))))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2320
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2321 (defun YaTeX-fill-item ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2322 "Fill item in itemize environment."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2323 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2324 (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2325 (let* ((p (point))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2326 (item-term (concat
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2327 "\\(^[ \t]*$\\)\\|" YaTeX-item-regexp "\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2328 YaTeX-ec-regexp "\\(begin\\|end\\)\\)"))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2329 ;;This value depends on LaTeX.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2330 fill-prefix start col
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2331 (info (YaTeX-get-item-info t)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2332 (if (null info) nil ;not on \item, do nothing
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2333 (setq start (car info)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2334 col (car (cdr info)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2335 (save-excursion
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2336 (if (re-search-backward "^\\s *$" start t)
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2337 ;;if separated from \item line, isolate this block
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2338 (progn
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2339 (setq start (1+ (match-end 0)))
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2340 (goto-char start)
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2341 (skip-chars-forward " \t")
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2342 (delete-region (point) start) ;is this your favor???
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2343 (indent-to col))))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2344 (beginning-of-line)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2345 (if (<= (save-excursion
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2346 (re-search-forward
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2347 (concat "\\\\end{\\|\\\\begin{\\|^[ \t]*$") nil t)
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2348 (match-beginning 0))
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2349 p)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2350 (progn (message "Not on itemize.") nil)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2351 (end-of-line)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2352 (newline)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2353 (indent-to col)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2354 (setq fill-prefix
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2355 (buffer-substring (point-beginning-of-line)(point)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2356 (beginning-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2357 (delete-region (point) (progn (forward-line 1) (point)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2358 (re-search-forward item-term nil 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2359 (YaTeX-remove-trailing-comment start (point))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2360 (beginning-of-line)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2361 (push-mark (point) t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2362 (goto-char start)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2363 (forward-line 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2364 (while (< (point) (mark))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2365 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2366 (forward-line 1))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2367 (fill-region-as-paragraph start (mark))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2368 (if NTT-jTeX
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2369 (while (progn(forward-line -1)(end-of-line) (> (point) start))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2370 (insert ?%)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2371 (pop-mark))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2372
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2373 (defun YaTeX-fill-paragraph (arg)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2374 "YaTeX adjustment function for fill-paragraph.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2375 *Protect \\verb from unexpected broken up."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2376 (interactive "P")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2377 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2378 ((not (eq major-mode 'yatex-mode)) (fill-paragraph arg))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2379 ((YaTeX-quick-in-environment-p YaTeX-fill-inhibit-environments) nil)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2380 ((YaTeX-in-math-mode-p) nil)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2381 (t
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2382 (save-excursion
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2383 (let ((verbrex (concat YaTeX-ec-regexp
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2384 "\\(" YaTeX-verb-regexp "\\)" ;match#1
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2385 "\\(.\\).*\\(\\2\\)")) ;match #2 and #3
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2386 (p (point)) ii end poslist spacelist (fill-prefix fill-prefix))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2387 (cond
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2388 ((save-excursion (beginning-of-line) ;if point is on the first
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2389 (setq end (point)) ;non-whitespace char
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2390 (skip-chars-forward " \t")
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2391 (equal (point) p))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2392 (setq fill-prefix (buffer-substring p end)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2393 ((and ;;(not YaTeX-emacs-19)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2394 (string-match YaTeX-itemizing-env-regexp
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2395 (or (YaTeX-inner-environment t) "document"))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2396 (setq ii (YaTeX-get-item-info)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2397 (save-excursion
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2398 (beginning-of-line)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2399 (indent-to-column (car (cdr ii)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2400 (setq fill-prefix
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2401 (buffer-substring (point) (point-beginning-of-line)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2402 (delete-region (point) (progn (beginning-of-line) (point))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2403 (mark-paragraph)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2404 (save-restriction
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2405 (narrow-to-region (region-beginning) (region-end))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2406 (YaTeX-remove-trailing-comment (point-min) (point-max))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2407 (goto-char (point-min))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2408 (while (YaTeX-re-search-active-forward
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2409 verbrex YaTeX-comment-prefix (point-max) t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2410 (setq end (match-beginning 3))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2411 (goto-char (match-beginning 2))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2412 (while (re-search-forward "\\s " end t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2413 (setq poslist (cons (make-marker) poslist)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2414 spacelist (cons (preceding-char) spacelist))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2415 (replace-match "_")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2416 (set-marker (car poslist) (match-beginning 0))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2417 ;;(fill-paragraph arg)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2418 (fill-region-as-paragraph (point-min) (point-max) arg)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2419 (while spacelist
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2420 (goto-char (car poslist))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2421 (set-marker (car poslist) nil)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2422 (delete-char 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2423 (insert (car spacelist))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2424 (setq spacelist (cdr spacelist) poslist (cdr poslist)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2425 (goto-char (point-min))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2426 (forward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2427 (beginning-of-line)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2428 (while (re-search-forward "\\\\\\(\\(page\\)?ref\\|cite\\){" nil t)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2429 (if (< (point-end-of-line)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2430 (save-excursion (forward-char -1) (forward-list 1) (point)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2431 (progn (end-of-line) (insert YaTeX-comment-prefix))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2432 (goto-char (point-min))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2433 (if (and NTT-jTeX (looking-at "[ \t]"))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2434 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2435 (goto-char (point-min))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2436 (while (not (eobp))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2437 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2438 (or (bolp)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2439 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2440 (backward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2441 (looking-at "\\sw+")) ;is not japanese string
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2442 (progn (setq p (point)) (insert YaTeX-comment-prefix)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2443 (forward-line 1))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2444 (goto-char p)
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2445 (if (looking-at "%") (delete-char 1)) ;remove last inserted `%'
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2446 ))))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2447
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2448 (if (fboundp 'YaTeX-saved-indent-new-comment-line) nil
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2449 (fset 'YaTeX-saved-indent-new-comment-line
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2450 (symbol-function 'indent-new-comment-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2451 (fset 'indent-new-comment-line 'YaTeX-indent-new-comment-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2452
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2453 (defun YaTeX-indent-new-comment-line (&optional soft)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2454 "Tuned `indent-new-comment-line' function for yatex.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2455 See the documentation of `YaTeX-saved-indent-new-comment-line'."
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2456 (interactive)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2457 (cond
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2458 ((or (not (memq major-mode '(yatex-mode yahtml-mode)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2459 (string-match
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2460 "document"
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2461 (or (and (boundp 'inenv) inenv)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2462 (or (YaTeX-inner-environment t) "document"))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2463 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft))))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2464 ; ((and (eq major-mode 'yahtml-mode)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2465 ; (string-match
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2466 ; "^[Pp][Rr][Ee]" (yahtml-inner-environment-but "^[Aa]\\b" t)))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2467 ; (yahtml-indent-new-commnet-line))
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2468 ((and (eq major-mode 'yatex-mode) ;1997/2/4
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2469 (YaTeX-in-math-mode-p)) nil) ;1996/12/30
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2470 (t (let (fill-prefix)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2471 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft)))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2472
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2473 (defun YaTeX-fill-* ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2474 "Fill paragraph according to its condition."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2475 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2476 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2477 ((YaTeX-fill-item))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2478 ))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2479
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2480 ;; Accent completion
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2481 (defun YaTeX-read-accent-char (x)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2482 "Read char in accent braces."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2483 (let ((c (read-char)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2484 (concat
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2485 (if (and (or (= c ?i) (= c ?j))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2486 (not (string-match (regexp-quote x) "cdb")))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2487 "\\" "")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2488 (char-to-string c))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2489
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2490 (defun YaTeX-make-accent ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2491 "Make accent usage."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2492 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2493 (message "1:` 2:' 3:^ 4:\" 5:~ 6:= 7:. u v H t c d b")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2494 (let ((c (read-char))(case-fold-search nil))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2495 (setq c (cond ((and (> c ?0) (< c ?8))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2496 (substring "`'^\"~=." (1- (- c ?0)) (- c ?0)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2497 ((= c ?h) "H")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2498 (t (char-to-string c))))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2499 (if (not (string-match c "`'^\"~=.uvHtcdb")) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2500 (insert "\\" c "{}")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2501 (backward-char 1)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2502 (insert (YaTeX-read-accent-char c))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2503 (if (string= c "t") (insert (YaTeX-read-accent-char c)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2504 (forward-char 1))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2505
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2506 ;; Indentation
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2507 (defun YaTeX-current-indentation ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2508 "Return the indentation of current environment."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2509 (save-excursion
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2510 ;;(beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2511 (if (YaTeX-beginning-of-environment t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2512 (goto-char (get 'YaTeX-inner-environment 'point))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2513 (forward-line -1)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2514 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2515 (skip-chars-forward " \t"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2516 (current-column)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2517
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2518 (defun YaTeX-previous-line-indentation ()
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2519 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2520 (forward-line -1)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2521 (skip-chars-forward " \t")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2522 (current-column)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2523
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2524 (defun YaTeX-indent-line ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2525 "Indent corrent line referrin current environment."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2526 (interactive)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2527 (let ((indent-relative
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2528 (function
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2529 (lambda (&optional additional)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2530 (YaTeX-reindent
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2531 (+ (YaTeX-current-indentation)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2532 (or additional 0)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2533 YaTeX-environment-indent)))))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2534 sect depth iteminfo (p (point)) pp (peol (point-end-of-line))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2535 ;;inenv below is sometimes defined in YaTeX-indent-new-comment-line
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2536 (inenv (or (and (boundp 'inenv) inenv) (YaTeX-inner-environment t))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2537 ;;(if NTT-jTeX ;;Do you need this section?
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2538 ;; (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2539 ;; (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2540 ;; (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2541 ;; (forward-line -1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2542 ;; (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2543 ;; (or (= p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2544 ;; (progn (backward-char (length YaTeX-comment-prefix))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2545 ;; (not (looking-at (regexp-quote YaTeX-comment-prefix))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2546 ;; (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2547 ;; (skip-chars-backward YaTeX-comment-prefix)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2548 ;; (kill-line))))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2549 (or inenv (setq inenv "document")) ;is the default environment
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2550 (cond
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2551 ((and (YaTeX-on-begin-end-p) (match-beginning 2)) ;if \end
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2552 (YaTeX-reindent (YaTeX-current-indentation)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2553 ((string-match YaTeX-equation-env-regexp inenv)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2554 (YaTeX-indent-line-equation)) ;autoload-ed from yatexenv
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2555 (;(YaTeX-in-environment-p '("itemize" "enumerate" "description" "list"))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2556 (string-match YaTeX-itemizing-env-regexp inenv)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2557 ;;(YaTeX-on-item-p) ??
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2558 ;;(setq iteminfo (YaTeX-get-item-info t))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2559 (if (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2560 (beginning-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2561 (re-search-forward YaTeX-item-regexp peol t))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2562 (progn
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2563 (save-excursion
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2564 (goto-char (1+ (match-beginning 0)))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2565 (setq depth
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2566 (* YaTeX-environment-indent
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2567 (cond
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2568 ((looking-at "subsubsub") 3)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2569 ((looking-at "subsub") 2)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2570 ((looking-at "sub") 1)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2571 (t 0)))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2572 (funcall indent-relative depth))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2573 (YaTeX-reindent (or (car (cdr (YaTeX-get-item-info nil inenv)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2574 (+ (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2575 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2576 (YaTeX-current-indentation))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2577 YaTeX-environment-indent))))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2578 )
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2579 ((YaTeX-literal-p) ;verbatims
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2580 (tab-to-tab-stop))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2581 ((and inenv (not (equal "document" inenv)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2582 (funcall indent-relative))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2583 ((YaTeX-on-section-command-p YaTeX-sectioning-regexp)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2584 (require 'yatexsec) ;to know YaTeX-sectioning-level
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2585 (setq sect (YaTeX-match-string 1))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2586 (if (string-match "\\*$" sect)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2587 (setq sect (substring sect 0 -1)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2588 (YaTeX-reindent
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2589 (* (max
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2590 (1- ;I want chapter to have indentation 0
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2591 (or (cdr (assoc sect YaTeX-sectioning-level))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2592 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2593 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2594 YaTeX-environment-indent)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2595 ;;Default movement
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2596 ((and (bolp) fill-prefix) (insert fill-prefix))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2597 (t (save-excursion
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2598 (beginning-of-line)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2599 (if fill-prefix
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2600 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2601 (delete-region (point)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2602 (progn (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2603 (point)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2604 (insert fill-prefix))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2605 (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2606 (indent-relative-maybe)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2607 (skip-chars-forward " \t")))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2608 ;;if current line is \begin, re-indent \end too
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2609 (if (and (YaTeX-on-begin-end-p) (match-beginning 1))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2610 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2611 ;;(beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2612 ;;(search-forward "\\begin")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2613 (goto-char (match-beginning 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2614 (setq depth (current-column))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2615 (YaTeX-goto-corresponding-environment)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2616 (YaTeX-reindent depth)))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2617 (if (or
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2618 (and NTT-jTeX
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2619 (save-excursion (beginning-of-line) (looking-at "[ \t]")))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2620 (save-excursion
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2621 (beginning-of-line)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2622 (backward-char 1)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2623 (and
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2624 (re-search-backward
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2625 "\\\\\\(\\(page\\)?ref\\|cite\\){" (point-beginning-of-line) t)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2626 (goto-char (1- (match-end 0)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2627 (> (save-excursion
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2628 (condition-case ()
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2629 (progn (forward-list 1) (point))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2630 (error (point-max))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2631 (point-end-of-line)))))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2632 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2633 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2634 (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2635 (forward-line -1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2636 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2637 (or (= p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2638 (looking-at (regexp-quote YaTeX-comment-prefix))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2639 (bobp) (bolp)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2640 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2641 (backward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2642 (looking-at "\\sw+")) ;is not japanese string
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2643 (insert YaTeX-comment-prefix)))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2644
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2645 (provide 'yatex)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2646 (defvar yatex-mode-load-hook nil
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2647 "*List of functions to be called when yatex.el is loaded.")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2648 (if (and YaTeX-emacs-19 window-system (not (featurep 'yatex19)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2649 (load "yatex19"))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2650 (load "yatexhks" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2651
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2652 ;;-------------------- Final hook jobs --------------------
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2653 (substitute-all-key-definition
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2654 'fill-paragraph 'YaTeX-fill-paragraph YaTeX-mode-map)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2655 (run-hooks 'yatex-mode-load-hook)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2656
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2657 ;; `History' was moved to ChangeLog
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
2658 ;----------------------------- End of yatex.el -----------------------------

yatex.org