yatex

view yatex.el @ 508:f5cf5888847d

Update default value of bibtex-command
author HIROSE Yuuji <yuuji@gentei.org>
date Wed, 03 Jan 2018 23:53:56 +0900
parents feef2aa1f50f
children 3796f4f7c81d
line source
1 ;;; yatex.el --- Yet Another tex-mode for emacs //野鳥// -*- coding: sjis -*-
2 ;;; (c)1991-2017 by HIROSE Yuuji.[yuuji@yatex.org]
3 ;;; Last modified Tue Jan 2 23:11:09 2018 on firestorm
4 ;;; $Id$
5 ;;; The latest version of this software is always available at;
6 ;;; https://www.yatex.org/
8 ;;; This program is distributed as a free software. You can
9 ;;; use/copy/modify/redistribute this software freely but with NO
10 ;;; warranty to anything as a result of using this software. Adopting
11 ;;; code from this program is also free. But I would not do contract
12 ;;; act.
13 ;;;
14 ;;; This software can be treated with: ``The 2-Clause BSD License''
15 ;;; (since 2017-09-09, yatex 1.80).
17 ;;; Code:
18 (require 'yatexlib)
19 (defconst YaTeX-revision-number "1.80.1"
20 "Revision number of running yatex.el")
22 ;---------- Local variables ----------
23 (defvar YaTeX-prefix "\C-c"
24 "*Prefix key to call YaTeX functions.
25 You can select favorite prefix key by setq in your ~/.emacs.")
27 (defvar YaTeX-environment-indent 1
28 "*Indentation depth at column width in LaTeX environments.")
30 (defvar YaTeX-fill-prefix nil
31 "*fill-prefix used for auto-fill-mode.
32 The default value is nil.")
34 (defvar YaTeX-fill-column 72
35 "*fill-column used for auto-fill-mode.")
37 (defvar YaTeX-comment-prefix "%"
38 "TeX comment prefix.")
40 (defvar YaTeX-current-position-register ?3
41 "*Position register to keep where the last completion was done.
42 All of YaTeX completing input store the current position into
43 the register YaTeX-current-position-register. So every time you
44 make a trip to any other part of text other than you are writing, you can
45 return to the editing paragraph by calling register-to-point with argument
46 YaTeX-current-position-register.")
48 (defvar YaTeX-use-LaTeX2e t "*Use LaTeX2e or not. Nil means latex 2.09")
50 (defvar tex-command
51 (cond
52 (YaTeX-use-LaTeX2e "platex -kanji=%k")
53 (YaTeX-japan "jlatex")
54 (t "latex"))
55 "*Default command for typesetting LaTeX text.
56 Overridden with `%#! CommandLine...' in the buffer.
57 `%'s followed by a character are replaced as follows:
58 %f -> Parent(main) document file name
59 %r -> %f without extension
60 %k -> One of Kanji code mnemonic: euc, jis, sjis, utf8
61 ")
63 (defvar bibtex-command (if YaTeX-japan "pbibtex -kanji=%k" "bibtex")
64 "*Default command of BibTeX.
65 Overridden with `%#BIBTEX CommandLine...' in the buffer.
66 Pettern `%k' in a string will be replaced with Kanji-code mnemonic of ptex.")
68 (defvar dvi2-command ;previewer command for your site
69 (cond (YaTeX-dos "dviout -wait=0")
70 (YaTeX-macos "open -a Preview")
71 (t "xdvi -geo +0+0 -s 4"))
72 "*Default previewer command including its option.
73 Overridden with `%#PREVIEW CommandLine...' in the buffer.")
75 (defvar YaTeX-cmd-gimp "gimp")
76 (defvar YaTeX-cmd-tgif "tgif")
77 (defvar YaTeX-cmd-inkscape "inkscape")
78 (defvar YaTeX-cmd-dia "dia")
79 (defvar YaTeX-cmd-ooo "soffice")
80 (defvar YaTeX-cmd-gs "gs")
81 (defvar YaTeX-cmd-dvips
82 (if (YaTeX-executable-find "pdvips") "pdvips" "dvips"))
83 (defvar YaTeX-cmd-displayline
84 "/Applications/Skim.app/Contents/SharedSupport/displayline")
85 (defvar YaTeX-cmd-edit-ps YaTeX-cmd-gimp)
86 (defvar YaTeX-cmd-edit-pdf YaTeX-cmd-ooo)
87 (defvar YaTeX-cmd-edit-ai YaTeX-cmd-inkscape)
88 (defvar YaTeX-cmd-edit-svg YaTeX-cmd-inkscape)
89 (defvar YaTeX-cmd-edit-images YaTeX-cmd-gimp)
90 (defvar YaTeX-cmd-view-images "display -geometry +0+0")
92 (defvar tex-pdfview-command ;previewer command for your site
93 (cond
94 (YaTeX-dos "acroread")
95 (YaTeX-macos (cond
96 ((file-executable-p YaTeX-cmd-displayline) "open -a Skim")
97 (t "open")))
98 (t "evince"))
99 "*Default PDF viewer command including its option.
100 Overridden with `%#PDFVIEW CommandLine...' in the buffer.")
102 (defvar makeindex-command (if YaTeX-dos "makeind" "makeindex")
103 "*Default makeindex command.
104 Overridden with `%#MAKEINDEX CommandLine...' in the buffer.")
106 (defvar dviprint-command-format
107 (if YaTeX-dos "dviprt %s %f%t"
108 "dvi2ps %f %t %s | lpr")
109 "*Command line string to print out current file.
110 Overridden with `%#LPR CommandLine...' in the buffer.
111 Format string %s will be replaced by the filename. Do not forget to
112 specify the `from usage' and `to usage' with their option by format string
113 %f and %t.
114 See also documentation of dviprint-from-format and dviprint-to-format.")
116 (defvar dviprint-from-format
117 (if YaTeX-dos "%b-" "-f %b")
118 "*`From' page format of dvi filter. %b will turn to beginning page number.")
120 (defvar dviprint-to-format
121 (if YaTeX-dos "%e" "-t %e")
122 "*`To' page format of dvi filter. %e will turn to end page number.")
124 (defvar YaTeX-dvipdf-command
125 "dvipdfmx"
126 "*Command name to convert dvi file to PDF.
127 Overridden with `%#DVIPDF CommandLine...' in the buffer.")
129 (defvar YaTeX-default-document-style
130 (concat (if YaTeX-japan "js") "article")
131 "*Default LaTeX Documentstyle for YaTeX-typeset-region.")
133 (defvar YaTeX-need-nonstop nil
134 "*T for adding `\\nonstopmode{}' to text before invoking latex command.")
136 (defvar latex-warning-regexp "line.* [0-9]*"
137 "*Regular expression of line number of warning message by latex command.")
139 (defvar latex-error-regexp "l\\.[1-9][0-9]*"
140 "*Regular expression of line number of latex error.
141 Perhaps your latex command stops at this error message with line number of
142 LaTeX source text.")
144 (defvar latex-dos-emergency-message
145 "Emergency stop" ;<- for Micro tex, ASCII-pTeX 1.6
146 "Message pattern of emergency stop of typesetting.
147 Because Demacs (GNU Emacs on DOS) cannot have concurrent process, the
148 latex command which is stopping on a LaTeX error, is terminated by Demacs.
149 Many latex command on DOS display some messages when it is terminated by
150 other process, user or OS. Define to this variable a message string of your
151 latex command on DOS shown at abnormal termination.
152 Remember Demacs's call-process function is not oriented for interactive
153 process.")
155 (defvar NTT-jTeX nil
156 "*T for using NTT-jTeX for latex command.
157 More precisely, setting t to this variables inhibits inter-word break on
158 typeset document by line-break of source text. That is, YaTeX automatically
159 put % after each line at filling.
160 改行+インデントによって、タイプセット後の字間が空いてしまうのを抑制する場合に
161 tにする(古いNTT-jTeXで顕著に現れる)。具体的には、fillするときに各行の終わりに
162 %を付加する。")
165 (defvar YaTeX-item-regexp
166 (concat (regexp-quote "\\") "\\(sub\\|bib\\)*item")
167 "*Regular expression of item command.")
169 (defvar YaTeX-sectioning-regexp
170 "\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\)\\(\\*\\|\\b\\)"
171 "*LaTeX sectioning commands regexp.")
173 (defvar YaTeX-paragraph-start
174 (concat "^[ \t]*%\\|^[ \t]*$\\|\\'\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
175 YaTeX-sectioning-regexp ;sectioning commands
176 "\\|[A-z]*item\\|begin{\\|end{" ;special declaration
177 "\\|\\[\\|\\]"
178 "\\|newpage\\b\\|vspace\\b"
179 "\\)")
180 "*Paragraph starting regexp of common LaTeX source. Use this value
181 for YaTeX-uncomment-paragraph.")
183 (defvar YaTeX-paragraph-separate
184 (concat "^[ \t]*%\\|^[ \t]*$\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
185 YaTeX-sectioning-regexp ;sectioning commands
186 "\\|begin{\\|end{" ;special declaration
187 "\\|\\[\\|\\]"
188 "\\|newpage\\b\\|vspace\\b"
189 "\\)")
190 "*Paragraph delimiter regexp of common LaTeX source. Use this value
191 for YaTeX-uncomment-paragraph.")
193 (defvar YaTeX-verbatim-environments
194 '("verbatim" "verbatim*" "alltt")
195 "*Assume these environments of this variable disable LaTeX commands.")
196 (defvar YaTeX-verb-regexp "verb\\*?\\|path"
197 "*Regexp of verb family. Do not contain preceding \\\\ nor \\(\\).")
198 (defvar YaTeX-fill-inhibit-environments
199 (append '("tabular" "tabular*" "array" "picture" "eqnarray" "eqnarray*"
200 "longtable"
201 "equation" "equation*" "math" "displaymath")
202 YaTeX-verbatim-environments)
203 "*In these environments, YaTeX inhibits fill-paragraph from formatting.
204 Define those environments as a form of list.")
206 (defvar YaTeX-itemizing-env-regexp
207 "itemize\\|enumerate\\|description\\|list\\|thebibliography"
208 "*Regexp of itemizing environments")
209 (defvar YaTeX-equation-env-regexp
210 "array\\*?\\|equation\\*?"
211 "*Regexp of environments for equations")
212 (defvar YaTeX-array-env-regexp
213 (concat
214 "array\\*?\\|eqnarray\\*?\\|tabbing\\|tabular\\*?\\|" ;LaTeX
215 "longtable\\|" ;LaTeX2e
216 "matrix\\|pmatrix\\|bmatrix\\|vmatrix\\|Vmatrix\\|" ;AMS-LaTeX
217 "align\\*?\\|split\\*?\\|aligned\\*?\\|alignat\\*?\\|" ;AMS-LaTeX
218 "[bpvV]?matrix\\|smallmatrix\\|cases\\|" ;AMS-LaTeX
219 "xalignat\\*?\\|xxalignat\\*?") ;AMS-LaTeX
220 "*Regexp of environments where `&' becomes field delimiter.")
221 (defvar YaTeX-uncomment-once t
222 "*T for removing all continuous commenting character(%).
223 Nil for removing only one commenting character at the beginning-of-line.")
225 (defvar YaTeX-close-paren-always t
226 "*Close parenthesis always when YaTeX-modify-mode is nil.")
228 (defvar YaTeX-greek-by-maketitle-completion nil
229 "*T for greek letters completion by maketitle-type completion.")
231 (defvar YaTeX-auto-math-mode t
232 "*T for changing YaTeX-math mode automatically.")
233 (defvar YaTeX-use-AMS-LaTeX t
234 "*T for using AMS-LaTeX")
236 (defvar yatex-mode-hook nil
237 "*List of functions to be called at the end of yatex-mode initializations.")
239 (defvar YaTeX-search-file-from-top-directory t
240 "*Non-nil means to search input-files from the directory where main file exists.")
242 (defvar YaTeX-use-font-lock (and (featurep 'font-lock)
243 (fboundp 'x-color-values)
244 (fboundp 'font-lock-fontify-region))
245 "*Use font-lock to fontify buffer or not.")
247 (defvar YaTeX-use-hilit19 (and (featurep 'hilit19) (fboundp 'x-color-values)
248 (fboundp 'hilit-translate)
249 (not YaTeX-use-font-lock))
250 "*Use hilit19 to highlight buffer or not.")
252 (defvar YaTeX-tabular-indentation 4
253 "*Indentation column-depth of continueing line in tabular environment.")
255 (defvar YaTeX-electric-indent-mode -1
256 "*(for Emacs 24.4+) Pass this value to electric-indent-local-mode.
257 -1 means `off'.")
259 ;;-- Math mode values --
261 (defvar YaTeX-math-key-list-default
262 '((";" . YaTeX-math-sign-alist)
263 (":" . YaTeX-greek-key-alist))
264 "Default key sequence to invoke math-mode's image completion.")
266 (defvar YaTeX-math-key-list-private nil
267 "*User defined alist, math-mode-prefix vs completion alist.")
269 (defvar YaTeX-math-key-list
270 (append YaTeX-math-key-list-private YaTeX-math-key-list-default)
271 "Key sequence to invoke math-mode's image completion.")
273 (defvar YaTeX-skip-default-reader nil
274 "Non-nil skips default argument reader of section-type completion.")
276 (defvar YaTeX-simple-messages nil
277 "Non-nil makes minibuffer messages simpler.")
279 (defvar YaTeX-template-file "~/work/template.tex"
280 "*Template TeX source file. This will be inserted to empty file.")
282 (defvar YaTeX-addin-prefix "YaTeX:")
284 (defvar yatex-mode-abbrev-table nil
285 "*Abbrev table in use in yatex-mode buffers.")
286 (define-abbrev-table 'yatex-mode-abbrev-table ())
289 ;------------ Completion table ------------
290 ; Set tex-section-like command possible completion
291 (defvar section-table
292 (append
293 '(("part") ("chapter") ("chapter*") ("section") ("section*")
294 ("subsection") ("subsection*")
295 ("subsubsection") ("paragraph") ("subparagraph")
296 ("author") ("thanks") ("documentstyle") ("pagestyle") ("thispagestyle")
297 ("title") ("underline") ("label") ("makebox")
298 ("footnote") ("footnotetext") ("index")
299 ("hspace*") ("vspace*") ("bibliography") ("bibitem") ("cite")
300 ("input") ("include") ("includeonly") ("mbox") ("hbox") ("caption")
301 ("arabic") ("cetering") ("uline")
302 ("newcounter")
303 ("newlength") ("setlength" 2) ("addtolength" 2) ("settowidth" 2)
304 ("setcounter" 2) ("addtocounter" 2) ("stepcounter" 2)
305 ("newcommand" 2) ("renewcommand" 2)
306 ("newenvironment" 3) ("newtheorem" 2)
307 ("cline") ("framebox") ("savebox" 2) ("sbox" 2) ("newsavebox") ("usebox")
308 ("date") ("put") ("ref") ("pageref") ("tabref") ("figref") ("raisebox" 2)
309 ("multicolumn" 3) ("shortstack") ("parbox" 2)
310 ;; for mathmode accent
311 ("tilde") ("hat") ("check") ("bar") ("dot") ("ddot") ("vec")
312 ("widetilde") ("widehat") ("overline") ("overrightarrow")
313 ;; section types in mathmode
314 ("frac" 2) ("sqrt") ("mathrm") ("mathbf") ("mathit") ("mathbb")
315 ("mathscr") ("mathrsfs")
316 ;;cleveref
317 ("cref") ("crefrange") ("cpageref") ("labelcref") ("labelcpageref")
318 ;; beamer
319 ("frametitle") ("framesubtitle")
320 )
321 (if YaTeX-use-LaTeX2e
322 '(("documentclass") ("usepackage")
323 ("textbf") ("textgt") ("textit") ("textmc") ("textmd") ("textnormal")
324 ("textrm") ("textsc") ("textsf") ("textsl") ("texttt") ("textup")
325 ("mathbf") ("mathcal") ("mathit") ("mathnormal") ("mathrm")
326 ("mathsf") ("mathtt") ("text")
327 ("textcircled")
328 ("scalebox" 1) ;is faking of argument position
329 ("rotatebox" 2) ("resizebox" 3) ("reflectbox")
330 ("colorbox" 2) ("fcolorbox" 3) ("textcolor" 2) ("color") ("pagecolor")
331 ("includegraphics") ("includegraphics*")
332 ("bou") ;defined in plext
333 ("url") ;defined in url
334 ("shadowbox") ("doublebox") ("ovalbox") ("Ovalbox")
335 ("fancyoval") ;defined in fancybox
336 ("keytop") ("mask" 2) ("maskbox" 5) ;defined in ascmac
337 ("bm") ;deined in bm
338 ("verbfile") ("listing") ;defined in misc
339 ("slashbox" 2) ("backslashbox" 2) ;defined in slashbox
340 ))
341 (if YaTeX-use-AMS-LaTeX
342 '(("DeclareMathOperator" 2) ("boldsymbol") ("pmb") ("eqref")
343 ("tag") ("tag*"))))
344 "Default completion table for section-type completion.")
346 (defvar user-section-table nil)
347 (defvar tmp-section-table nil)
348 (defvar YaTeX-ams-math-begin-alist
349 '(("align") ("align*") ("multline") ("multline*") ("gather") ("gather*")
350 ("alignat") ("alignat*") ("xalignat") ("xalignat*")
351 ("xxalignat") ("xxalignat*") ("flalign") ("flalign*") ("equation*")))
352 (defvar YaTeX-ams-math-gathering-alist
353 '(("matrix") ("pmatrix") ("bmatrix") ("Bmatrix") ("vmatrix") ("Vmatrix")
354 ("split") ("split*") ("aligned") ("aligned*") ("alignedat") ("gathered")
355 ("smallmatrix") ("cases") ("subequations")))
356 ;; Prepare list(not alist) for YaTeX::ref in yatexadd.el
357 (defvar YaTeX-math-other-env-alist-default
358 '(("numcases") ("subnumcases"))
359 "Default alist of additional environments for equations")
360 (defvar YaTeX-math-other-env-alist-private nil
361 "*User defined alist of additional environments for equations")
362 (defvar YaTeX-math-other-env-alist
363 (append YaTeX-math-other-env-alist-default
364 YaTeX-math-other-env-alist-private)
365 "Alist of additional environments for equations")
366 (defvar YaTeX-math-other-env-list
367 (mapcar 'car YaTeX-math-other-env-alist))
369 (defvar YaTeX-math-begin-list
370 (mapcar 'car YaTeX-ams-math-begin-alist))
371 (defvar YaTeX-math-gathering-list ;used in yatexadd.el#yatex::ref
372 (mapcar 'car YaTeX-ams-math-gathering-alist))
374 (defvar YaTeX-ams-env-table
375 (append YaTeX-ams-math-begin-alist YaTeX-ams-math-gathering-alist)
376 "*Standard AMS-LaTeX(2e) environment completion table.")
378 ; Set tex-environment possible completion
379 (defvar env-table
380 (append
381 '(("quote") ("quotation") ("center") ("verse") ("document")
382 ("verbatim") ("itemize") ("enumerate") ("description")
383 ("list") ("tabular") ("tabular*") ("table") ("tabbing") ("titlepage")
384 ("sloppypar") ("picture") ("displaymath")
385 ("eqnarray") ("eqnarray*") ("figure") ("equation") ("equation*")
386 ("abstract") ("array")
387 ("thebibliography") ("theindex") ("flushleft") ("flushright")
388 ("minipage")
389 ("supertabular")
390 ("wrapfigure") ("wraptable")
391 ("frame") ("block") ("example") ("columns") ("column") ;beamer
392 )
393 (if YaTeX-use-LaTeX2e
394 '(("comment") ;defined in version
395 ("longtable") ;defined in longtable
396 ("screen") ("boxnote") ("shadebox") ;; ("itembox") ;in ascmac
397 ("alltt") ;defined in alltt
398 ("multicols") ;defined in multicol
399 ("breakbox"))) ;defined in eclbkbox
400 (if YaTeX-use-AMS-LaTeX YaTeX-ams-env-table)
401 YaTeX-math-other-env-alist)
402 "Default completion table for begin-type completion.")
404 (defvar user-env-table nil)
405 (defvar tmp-env-table nil)
407 ; Set {\Large }-like completion
408 (defvar fontsize-table
409 '(("rm") ("em") ("bf") ("boldmath") ("it") ("sl") ("sf") ("sc") ("tt")
410 ("dg") ("dm")
411 ("tiny") ("scriptsize") ("footnotesize") ("small")("normalsize")
412 ("large") ("Large") ("LARGE") ("huge") ("Huge")
413 ("rmfamily") ("sffamily") ("ttfamily")
414 ("mdseries") ("bfseries") ("upshape")
415 ("itshape") ("slshape") ("scshape")
416 )
417 "Default completion table for large-type completion.")
419 (defvar LaTeX2e-fontstyle-alist
420 '(("rm" . "rmfamily")
421 ("sf" . "sffamily")
422 ("tt" . "ttfamily")
423 ("md" . "mdseries")
424 ("bf" . "bfseries")
425 ("up" . "upshape")
426 ("it" . "itshape")
427 ("sl" . "slshape")
428 ("sc" . "scshape")))
430 (defvar user-fontsize-table nil)
431 (defvar tmp-fontsize-table nil)
433 (defvar singlecmd-table
434 (append
435 '(("maketitle") ("makeindex") ("sloppy") ("protect") ("par") ("and")
436 ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline") ("kill")
437 ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow")
438 ("pagebreak") ("nopagebreak") ("tableofcontents")
439 ("newpage") ("clearpage") ("cleardoublepage")
440 ("footnotemark") ("verb") ("verb*")
441 ("linebreak") ("pagebreak") ("noindent") ("indent")
442 ("raggedright") ("raggedleft") ("centering")
443 ("left") ("right") ("dots") ("smallskip") ("medskip") ("bigskip")
444 ("displaystyle")
445 ("onslide") ("pause") ;beamer
446 )
447 (if YaTeX-greek-by-maketitle-completion
448 '(("alpha") ("beta") ("gamma") ("delta") ("epsilon")
449 ("varepsilon") ("zeta") ("eta") ("theta")("vartheta")
450 ("iota") ("kappa") ("lambda") ("mu") ("nu") ("xi") ("pi")
451 ("varpi") ("rho") ("varrho") ("sigma") ("varsigma") ("tau")
452 ("upsilon") ("phi") ("varphi") ("chi") ("psi") ("omega")
453 ("Gamma") ("Delta") ("Theta") ("Lambda")("Xi") ("Pi")
454 ("Sigma") ("Upsilon") ("Phi") ("Psi") ("Omega")))
455 (if YaTeX-use-LaTeX2e
456 '(("return") ("Return") ("yen"))) ;defined in ascmac
457 (if YaTeX-use-AMS-LaTeX
458 '(("nonumber")))
459 )
460 "Default completion table for maketitle-type completion.")
462 (defvar user-singlecmd-table nil)
463 (defvar tmp-singlecmd-table nil)
465 ;---------- Key mode map ----------
466 ;;;
467 ;; Create new key map: YaTeX-mode-map
468 ;; Do not change this section.
469 ;;;
470 (defvar YaTeX-mode-map nil
471 "Keymap used in YaTeX mode")
473 (defvar YaTeX-prefix-map nil
474 "Keymap used when YaTeX-prefix key pushed")
476 (defvar YaTeX-user-extensional-map (make-sparse-keymap)
477 "*Keymap used for the user's customization")
478 (defvar YaTeX-current-completion-type nil
479 "Has current completion type. This may be used in YaTeX addin functions.")
481 (defvar YaTeX-modify-mode nil
482 "*Current editing mode.
483 When non-nil, each opening parentheses only opens,
484 nil enters both open/close parentheses when opening parentheses key pressed.")
486 (defvar YaTeX-math-mode nil
487 "Holds whether current mode is math-mode.")
488 ;;;
489 ;; Define key table
490 ;;;
491 (if YaTeX-mode-map
492 nil
493 (setq YaTeX-mode-map (make-sparse-keymap))
494 (setq YaTeX-prefix-map (make-sparse-keymap))
495 (define-key YaTeX-mode-map "\"" 'YaTeX-insert-quote)
496 (define-key YaTeX-mode-map "{" 'YaTeX-insert-braces)
497 (define-key YaTeX-mode-map "(" 'YaTeX-insert-parens)
498 (define-key YaTeX-mode-map "$" 'YaTeX-insert-dollar)
499 (define-key YaTeX-mode-map "|" 'YaTeX-insert-bar)
500 (define-key YaTeX-mode-map "&" 'YaTeX-insert-amper)
501 (define-key YaTeX-mode-map "[" 'YaTeX-insert-brackets)
502 (define-key YaTeX-mode-map YaTeX-prefix YaTeX-prefix-map)
503 (define-key YaTeX-mode-map "\M-\C-@" 'YaTeX-mark-environment)
504 (define-key YaTeX-mode-map "\M-\C-a" 'YaTeX-beginning-of-environment)
505 (define-key YaTeX-mode-map "\M-\C-e" 'YaTeX-end-of-environment)
506 (define-key YaTeX-mode-map "\M-\C-m" 'YaTeX-intelligent-newline)
507 (define-key YaTeX-mode-map "\C-i" 'YaTeX-indent-line)
508 (YaTeX-define-key "%" 'YaTeX-%-menu)
509 (YaTeX-define-key "t" 'YaTeX-typeset-menu)
510 (YaTeX-define-key "w" 'YaTeX-switch-mode-menu)
511 (YaTeX-define-key "'" 'YaTeX-prev-error)
512 (YaTeX-define-key "^" 'YaTeX-visit-main)
513 (YaTeX-define-key "4^" 'YaTeX-visit-main-other-window)
514 (YaTeX-define-key "4g" 'YaTeX-goto-corresponding-*-other-window)
515 (YaTeX-define-key "44" 'YaTeX-switch-to-window)
516 (and YaTeX-emacs-19 window-system
517 (progn
518 (YaTeX-define-key "5^" 'YaTeX-visit-main-other-frame)
519 (YaTeX-define-key "5g" 'YaTeX-goto-corresponding-*-other-frame)
520 (YaTeX-define-key "55" 'YaTeX-switch-to-window)))
521 (YaTeX-define-key " " 'YaTeX-do-completion)
522 (YaTeX-define-key "v" 'YaTeX-version)
524 (YaTeX-define-key "}" 'YaTeX-insert-braces-region)
525 (YaTeX-define-key "]" 'YaTeX-insert-brackets-region)
526 (YaTeX-define-key ")" 'YaTeX-insert-parens-region)
527 (YaTeX-define-key "$" 'YaTeX-insert-dollars-region)
528 (YaTeX-define-key "i" 'YaTeX-fill-item)
529 (YaTeX-define-key "\\"
530 (function(lambda () (interactive)
531 (insert (if (YaTeX-in-math-mode-p) "\\backslash" "\\textbackslash")))))
532 (if YaTeX-no-begend-shortcut
533 (progn
534 (YaTeX-define-key "B" 'YaTeX-make-begin-end-region)
535 (YaTeX-define-key "b" 'YaTeX-make-begin-end))
536 (YaTeX-define-begend-key "bc" "center")
537 (YaTeX-define-begend-key "bd" "document")
538 (YaTeX-define-begend-key "bD" "description")
539 (YaTeX-define-begend-key "be" "enumerate")
540 (YaTeX-define-begend-key "bE" "equation")
541 (YaTeX-define-begend-key "bi" "itemize")
542 (YaTeX-define-begend-key "bl" "flushleft")
543 (YaTeX-define-begend-key "bm" "minipage")
544 (YaTeX-define-begend-key "bt" "tabbing")
545 (YaTeX-define-begend-key "bT" "tabular")
546 (YaTeX-define-begend-key "b\^t" "table")
547 (YaTeX-define-begend-key "bp" "picture")
548 (YaTeX-define-begend-key "bq" "quote")
549 (YaTeX-define-begend-key "bQ" "quotation")
550 (YaTeX-define-begend-key "br" "flushright")
551 (YaTeX-define-begend-key "bv" "verbatim")
552 (YaTeX-define-begend-key "bV" "verse")
553 (YaTeX-define-key "B " 'YaTeX-make-begin-end-region)
554 (YaTeX-define-key "b " 'YaTeX-make-begin-end))
555 (YaTeX-define-key "e" 'YaTeX-end-environment)
556 (YaTeX-define-key "S" 'YaTeX-make-section-region)
557 (YaTeX-define-key "s" 'YaTeX-make-section)
558 (YaTeX-define-key "L" 'YaTeX-make-fontsize-region)
559 (YaTeX-define-key "l" 'YaTeX-make-fontsize)
560 (YaTeX-define-key "m" 'YaTeX-make-singlecmd)
561 (YaTeX-define-key "." 'YaTeX-comment-paragraph)
562 (YaTeX-define-key "," 'YaTeX-uncomment-paragraph)
563 (YaTeX-define-key ">" 'YaTeX-comment-region)
564 (YaTeX-define-key "<" 'YaTeX-uncomment-region)
565 (YaTeX-define-key "g" 'YaTeX-goto-corresponding-*)
566 (YaTeX-define-key "k" 'YaTeX-kill-*)
567 (YaTeX-define-key "c" 'YaTeX-change-*)
568 (YaTeX-define-key "a" 'YaTeX-make-accent)
569 (YaTeX-define-key "?" 'YaTeX-help)
570 (YaTeX-define-key "/" 'YaTeX-apropos)
571 (YaTeX-define-key "&" 'YaTeX-what-column)
572 (YaTeX-define-key "d" 'YaTeX-display-hierarchy)
573 (YaTeX-define-key "x" YaTeX-user-extensional-map)
574 (YaTeX-define-key "n"
575 (function(lambda () (interactive)
576 (insert "\\" (if (YaTeX-on-section-command-p "o?oalign") "crcr" "\\")))))
577 (if YaTeX-dos
578 (define-key YaTeX-prefix-map "\C-r"
579 (function(lambda () (interactive)
580 (YaTeX-set-screen-height YaTeX-saved-screen-height) (recenter))))))
582 (defvar YaTeX-section-completion-map nil
583 "*Key map used at YaTeX completion in the minibuffer.")
584 (if YaTeX-section-completion-map nil
585 (setq YaTeX-section-completion-map
586 (copy-keymap (or (and (boundp 'gmhist-completion-map)
587 gmhist-completion-map)
588 minibuffer-local-completion-map)))
589 (define-key YaTeX-section-completion-map
590 " " 'YaTeX-minibuffer-complete)
591 (define-key YaTeX-section-completion-map
592 "\C-i" 'YaTeX-minibuffer-complete)
593 (define-key YaTeX-section-completion-map
594 "\C-v" 'YaTeX-read-section-with-overview))
596 (defvar YaTeX-recursive-map nil
597 "*Key map used at YaTeX reading arguments in the minibuffer.")
598 (if YaTeX-recursive-map nil
599 (setq YaTeX-recursive-map (copy-keymap global-map))
600 (define-key YaTeX-recursive-map YaTeX-prefix YaTeX-prefix-map)
601 (mapcar
602 (function
603 (lambda (key)
604 (define-key YaTeX-mode-map (car key) 'YaTeX-math-insert-sequence)
605 (define-key YaTeX-recursive-map (car key) 'YaTeX-math-insert-sequence)))
606 YaTeX-math-key-list))
607 ;---------- Define other variable ----------
608 (defvar YaTeX-env-name "document" "*Initial tex-environment completion")
609 (defvar YaTeX-section-name
610 (if YaTeX-use-LaTeX2e "documentclass" "documentstyle")
611 "*Initial tex-section completion")
612 (defvar YaTeX-fontsize-name "large" "*Initial fontsize completion")
613 (defvar YaTeX-single-command "maketitle" "*Initial LaTeX single command")
614 (defvar YaTeX-kanji-code nil
615 "*File kanji code used by Japanese TeX.
616 nil: Do not care (Preserve coding-system)
617 0: no-converion (mule)
618 1: Shift JIS
619 2: JIS
620 3: EUC
621 4: UTF-8")
623 (defvar YaTeX-coding-system nil "File coding system used by Japanese TeX.")
624 (cond
625 (YaTeX-emacs-20
626 (setq YaTeX-coding-system
627 (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist))))
628 ((boundp 'MULE)
629 (setq YaTeX-coding-system
630 (symbol-value (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist))))))
632 (defvar YaTeX-mode-syntax-table nil
633 "*Syntax table for yatex-mode")
635 (if YaTeX-mode-syntax-table nil
636 (setq YaTeX-mode-syntax-table (make-syntax-table (standard-syntax-table)))
637 (modify-syntax-entry ?\n " " YaTeX-mode-syntax-table)
638 (modify-syntax-entry ?\{ "(}" YaTeX-mode-syntax-table)
639 (modify-syntax-entry ?\} "){" YaTeX-mode-syntax-table)
640 (modify-syntax-entry ?\t " " YaTeX-mode-syntax-table)
641 (modify-syntax-entry ?\f ">" YaTeX-mode-syntax-table)
642 (modify-syntax-entry ?\n ">" YaTeX-mode-syntax-table)
643 (modify-syntax-entry ?$ "$$" YaTeX-mode-syntax-table)
644 (modify-syntax-entry ?% "<" YaTeX-mode-syntax-table)
645 (modify-syntax-entry ?\\ "/" YaTeX-mode-syntax-table)
646 (modify-syntax-entry ?~ " " YaTeX-mode-syntax-table))
648 (defvar YaTeX-mode-syntax-table-nonparen nil
649 "Syntax table for yatex-mode with normal parentheses treated white spaces")
650 (if YaTeX-mode-syntax-table-nonparen nil
651 (setq YaTeX-mode-syntax-table-nonparen
652 (make-syntax-table YaTeX-mode-syntax-table))
653 (let ((zenparens "()()「」『』【】[]{}《》〈〉〔〕") (i 0) s)
654 (while (string-match "." zenparens i)
655 (setq s (substring zenparens (match-beginning 0) (match-end 0))
656 i (1+ i))
657 (modify-syntax-entry
658 (string-to-char s) " " YaTeX-mode-syntax-table-nonparen))))
660 ;---------- Provide YaTeX-mode ----------
661 ;;;
662 ;; Major mode definition
663 ;;;
664 (defun yatex-mode ()
665 " Yet Another LaTeX mode: Major mode for editing input files of LaTeX.
666 -You can invoke processes concerning LaTeX typesetting by
667 \\[YaTeX-typeset-menu]
668 -Complete LaTeX environment form of `\\begin{env} ... \\end{env}' by
669 \\[YaTeX-make-begin-end]
670 -Enclose region into some environment by
671 \\[universal-argument] \\[YaTeX-make-begin-end]
672 -Complete LaTeX command which takes argument like `\\section{}' by
673 \\[YaTeX-make-section]
674 -Put LaTeX command which takes no arguments like `\\maketitle' by
675 \\[YaTeX-make-singlecmd]
676 -Complete font or character size descriptor like `{\\large }' by
677 \\[YaTeX-make-fontsize]
678 -Enclose region into those descriptors above by
679 \\[universal-argument] \\[YaTeX-make-fontsize]
680 -Enter European accent notations by
681 \\[YaTeX-make-accent]
682 -Toggle various modes of YaTeX by
683 \\[YaTeX-switch-mode-menu]
684 -Change environt name (on the begin/end line) by
685 \\[YaTeX-change-*]
686 -Kill LaTeX command/environment sequences by
687 \\[YaTeX-kill-*]
688 -Kill LaTeX command/environment with its contents
689 \\[universal-argument] \\[YaTeX-kill-*]
690 -Go to corresponding object (begin/end, file, labels) by
691 \\[YaTeX-goto-corresponding-*] or
692 \\[YaTeX-goto-corresponding-*-other-window] (in other window)
693 \\[YaTeX-goto-corresponding-*-other-frame] (in other frame)
694 -Go to main LaTeX source text by
695 \\[YaTeX-visit-main] or
696 \\[YaTeX-visit-main-other-window] (in other window)
697 \\[YaTeX-visit-main-other-frame] (in other frame)
698 -Comment out or uncomment region by
699 \\[YaTeX-comment-region] or \\[YaTeX-uncomment-region]
700 -Comment out or uncomment paragraph by
701 \\[YaTeX-comment-paragraph] or \\[YaTeX-uncomment-paragraph]
702 -Make an \\item entry hang-indented by
703 \\[YaTeX-fill-item]
704 -Enclose the region with parentheses by
705 \\[YaTeX-insert-parens-region]
706 \\[YaTeX-insert-braces-region]
707 \\[YaTeX-insert-brackets-region]
708 \\[YaTeX-insert-dollars-region]
709 -Look up the corresponding column header of tabular environment by
710 \\[YaTeX-what-column]
711 -Enter a newline and an entry suitable for environment by
712 \\[YaTeX-intelligent-newline]
713 -View the structure of file inclusion by
714 \\[YaTeX-display-hierarchy]
715 -Refer the online help of popular LaTeX commands by
716 \\[YaTeX-help] (help)
717 \\[YaTeX-apropos] (apropos)
718 -Edit `%# notation' by
719 \\[YaTeX-%-menu]
721 Those are enough for fastening your editing of LaTeX source. But further
722 more features are available and they are documented in the manual.
723 "
724 (interactive)
725 (kill-all-local-variables)
726 (setq major-mode 'yatex-mode)
727 (setq mode-name (if YaTeX-japan "やてふ" "YaTeX"))
728 (mapcar 'make-local-variable
729 '(dvi2-command fill-column fill-prefix
730 tmp-env-table tmp-section-table tmp-fontsize-table
731 tmp-singlecmd-table paragraph-start paragraph-separate
732 YaTeX-math-mode indent-line-function comment-line-break-function
733 comment-start comment-start-skip
734 ))
735 (YaTeX-set-file-coding-system YaTeX-kanji-code YaTeX-coding-system)
736 (setq fill-column YaTeX-fill-column
737 fill-prefix YaTeX-fill-prefix
738 paragraph-start YaTeX-paragraph-start
739 paragraph-separate YaTeX-paragraph-separate
740 indent-line-function 'YaTeX-indent-line
741 comment-start YaTeX-comment-prefix
742 comment-end ""
743 comment-start-skip "[^\\\\]%+[ \t]*"
744 local-abbrev-table yatex-mode-abbrev-table)
745 (if (fboundp 'comment-indent-new-line) ;for Emacs21
746 (setq comment-line-break-function 'YaTeX-comment-line-break))
747 ;; +dnd for X11 w/ emacs23+
748 (and window-system (featurep 'dnd) (require 'yatex23 nil t)
749 (set (make-local-variable 'dnd-protocol-alist)
750 (cons (cons "^file:" 'YaTeX-dnd-handler) dnd-protocol-alist)))
752 (if (and YaTeX-use-font-lock (featurep 'font-lock))
753 (progn
754 (require 'yatex19)
755 (YaTeX-font-lock-set-default-keywords)
756 (or (featurep 'xemacs)
757 (set (make-local-variable 'font-lock-defaults)
758 (get 'yatex-mode 'font-lock-defaults)))
759 ;;(font-lock-mode 1)
760 ))
761 (use-local-map YaTeX-mode-map)
762 (set-syntax-table YaTeX-mode-syntax-table)
763 (if YaTeX-dos (setq YaTeX-saved-screen-height (YaTeX-screen-height)))
764 (YaTeX-read-user-completion-table)
765 (and (fboundp 'YaTeX-hilit-setup-alist) (YaTeX-hilit-setup-alist))
766 (makunbound 'inenv)
767 ;(turn-on-auto-fill) ;1.63 -> 1.79off
768 (if (fboundp 'electric-indent-local-mode)
769 (electric-indent-local-mode YaTeX-electric-indent-mode))
770 (and (= 0 (buffer-size)) (file-exists-p YaTeX-template-file)
771 (y-or-n-p (format "Insert %s?" YaTeX-template-file))
772 (insert-file-contents (expand-file-name YaTeX-template-file)))
773 (run-hooks 'text-mode-hook 'yatex-mode-hook))
775 ;---------- Define YaTeX-mode functions ----------
776 (defvar YaTeX-ec "\\" "Escape character of current mark-up language.")
777 (defvar YaTeX-ec-regexp (regexp-quote YaTeX-ec))
778 (defvar YaTeX-struct-begin
779 (concat YaTeX-ec "begin{%1}%2")
780 "Keyword format of begin-environment.")
781 (defvar YaTeX-struct-end
782 (concat YaTeX-ec "end{%1}")
783 "Keyword format of end-environment.")
784 (defvar YaTeX-struct-name-regexp "[^}]*"
785 "Environment name regexp.")
786 (defvar YaTeX-TeX-token-regexp
787 (cond (YaTeX-japan "[A-Za-z*ぁ-ん亜-龠]+")
788 (t "[A-Za-z*]+"))
789 "Regexp of characters which can be a member of TeX command's name.")
790 (defvar YaTeX-kanji-regexp "[ぁ-ん亜-龠]"
791 "Generic regexp of Japanese Kanji (and symbol) characters.")
792 (defvar YaTeX-command-token-regexp YaTeX-TeX-token-regexp
793 "Regexp of characters which can be a member of current mark up language's command name.")
795 ;;(defvar YaTeX-struct-section
796 ;; (concat YaTeX-ec "%1{%2}")
797 ;; "Keyword to make section.")
799 ;;;
800 ;; autoload section
801 ;;;
803 ;;autoload from yatexprc.el
804 (autoload 'YaTeX-visit-main "yatexprc" "Visit main LaTeX file." t)
805 (autoload 'YaTeX-visit-main-other-window "yatexprc"
806 "Visit main other window." t)
807 (autoload 'YaTeX-main-file-p "yatexprc" "Check if the file is main." t)
808 (autoload 'YaTeX-get-builtin "yatexprc" "Get %# built-in." t)
809 (autoload 'YaTeX-system "yatexprc" "Call system command" t)
810 (autoload 'YaTeX-save-buffers "yatexprc" "Save buffers of same major mode" t)
811 (autoload 'YaTeX-goto-corresponding-viewer "yatexprc" "Viewer jump line" t)
813 ;;autoload from yatexmth.el
814 (autoload 'YaTeX-math-insert-sequence "yatexmth" "Image input." t)
815 (autoload 'YaTeX-in-math-mode-p "yatexmth" "Check if in math-env." t)
816 (autoload 'YaTeX-toggle-math-mode "yatexmth" "YaTeX math-mode interfaces." t)
817 (autoload 'YaTeX-math-member-p "yatexmth" "Check if a word is math command." t)
818 (autoload 'YaTeX-insert-amsparens-region "yatexmth" "AMS parens region" t)
819 (autoload 'YaTeX-insert-amsbraces-region "yatexmth" "AMS braces region" t)
820 (autoload 'YaTeX-insert-amsbrackets-region "yatexmth" "AMS brackets region" t)
821 (autoload 'YaTeX-on-parenthesis-p "yatexmth" "Check if on math-parens" t)
822 (autoload 'YaTeX-goto-open-paren "yatexmth" "Goto opening paren" t)
823 (autoload 'YaTeX-change-parentheses "yatexmth" "Change corresponding parens" t)
824 (autoload 'YaTeX-goto-corresponding-paren "yatexmth" "\bigl\bigr jumps" t)
825 (autoload 'YaTeX-typeset-math-region "yatexmth" "Typeset math-region" t)
827 ;;autoload from yatexhlp.el
828 (autoload 'YaTeX-help "yatexhlp" "YaTeX helper with LaTeX commands." t)
829 (autoload 'YaTeX-apropos "yatexhlp" "Apropos for (La)TeX commands." t)
831 ;;autoload from yatexgen.el
832 (autoload 'YaTeX-generate "yatexgen" "YaTeX add-in function generator." t)
833 (autoload 'YaTeX-generate-simple "yatexgen" "YaTeX add-in support." t)
835 ;;autoload from yatexsec.el
836 (autoload 'YaTeX-section-overview "yatexsec" "YaTeX sectioning(view)" t)
837 (autoload 'YaTeX-read-section-in-minibuffer "yatexsec" "YaTeX sectioning" t)
838 (autoload 'YaTeX-make-section-with-overview "yatexsec" "YaTeX sectioning" t)
840 ;;autoload from yatexenv.el
841 (autoload 'YaTeX-what-column "yatexenv" "YaTeX env. specific funcs" t)
842 (autoload 'YaTeX-intelligent-newline "yatexenv" "YaTeX env. specific funcs" t)
843 (autoload 'YaTeX-indent-line-equation "yatexenv" "Indent equation lines." t)
844 (autoload 'YaTeX-goto-corresponding-leftright "yatexenv" "\left\right jumps" t)
846 ;;autoload from yatexhie.el
847 (autoload 'YaTeX-display-hierarchy "yatexhie"
848 "YaTeX document hierarchy browser" t)
849 (autoload 'YaTeX-display-hierarchy-directly "yatexhie"
850 "Same as YaTeX-display-hierarchy. Call from mouse." t)
852 ;;autoload from yatexpkg.el
853 (autoload 'YaTeX-package-auto-usepackage "yatexpkg" "Auto \\usepackage" t)
855 ;;;
856 ;; YaTeX-mode functions
857 ;;;
858 (defun YaTeX-insert-begin-end (env region-mode)
859 "Insert \\begin{mode-name} and \\end{mode-name}.
860 This works also for other defined begin/end tokens to define the structure."
861 (setq YaTeX-current-completion-type 'begin)
862 (let*((ccol (current-column)) beg beg2 exchange
863 (arg region-mode) ;for old compatibility
864 (indent-column (+ ccol YaTeX-environment-indent))(i 1) func)
865 (if (and region-mode (> (point) (mark)))
866 (progn (exchange-point-and-mark)
867 (setq exchange t
868 ccol (current-column)
869 indent-column (+ ccol YaTeX-environment-indent))))
870 ;;VER2 (insert "\\begin{" env "}" (YaTeX-addin env))
871 (setq beg (point))
872 (YaTeX-insert-struc 'begin env)
873 (setq beg2 (point))
874 (insert "\n")
875 (indent-to indent-column)
876 (save-excursion
877 ;;indent optional argument of \begin{env}, if any
878 (while (> (point-beginning-of-line) beg)
879 (skip-chars-forward "\\s " (point-end-of-line))
880 (indent-to indent-column)
881 (forward-line -1)))
882 (require 'yatexenv)
883 (if region-mode
884 ;;if region-mode, indent all text in the region
885 (save-excursion
886 (if (fboundp (intern-soft (concat "YaTeX-enclose-" env)))
887 (funcall (intern-soft (concat "YaTeX-enclose-" env))
888 (point) (mark))
889 (while (< (progn (forward-line 1) (point)) (mark))
890 (if (eolp) nil
891 (skip-chars-forward " \t\n")
892 (indent-to indent-column))))))
893 (if region-mode (exchange-point-and-mark))
894 (indent-to ccol)
895 ;;VER2 (insert "\\end{" env "}\n")
896 (YaTeX-insert-struc 'end env)
897 (YaTeX-reindent ccol)
898 (if region-mode
899 (progn
900 (insert "\n")
901 (or exchange (exchange-point-and-mark)))
902 (goto-char beg2)
903 (YaTeX-intelligent-newline nil)
904 (if (fboundp (intern-soft (concat "YaTeX-intelligent-newline-" env)))
905 (progn
906 (message
907 (cond
908 (YaTeX-japan "%s で次の行の入力に進みます。")
909 (t "`%s' produces the next line's template."))
910 (key-description
911 (car (where-is-internal 'YaTeX-intelligent-newline))))))
912 (YaTeX-indent-line))
913 (YaTeX-package-auto-usepackage env 'env)
914 (if YaTeX-current-position-register
915 (point-to-register YaTeX-current-position-register))))
917 (defun YaTeX-make-begin-end (arg)
918 "Make LaTeX environment command of \\begin{env.} ... \\end{env.}
919 by completing read.
920 If you invoke this command with universal argument,
921 \(key binding for universal-argument is \\[universal-argument]\)
922 you can put REGION into that environment between \\begin and \\end."
923 (interactive "P")
924 (let*
925 ((region-p (or arg (YaTeX-region-active-p)))
926 (mode (if region-p " region" ""))
927 (env
928 (save-excursion ;for Emacs24 work-around to avoid point warp
929 (YaTeX-read-environment
930 (format "Begin environment%s(default %s): " mode YaTeX-env-name)))))
931 (if (string= env "")
932 (setq env YaTeX-env-name))
933 (setq YaTeX-env-name env)
934 (YaTeX-update-table
935 (list YaTeX-env-name) 'env-table 'user-env-table 'tmp-env-table)
936 (YaTeX-insert-begin-end YaTeX-env-name region-p)))
938 (defun YaTeX-make-begin-end-region ()
939 "Call YaTeX-make-begin-end with ARG to specify region mode."
940 (interactive)
941 (YaTeX-make-begin-end t))
943 (defun YaTeX-guess-section-type ()
944 (if (eq major-mode 'yatex-mode)
945 (save-excursion
946 (cond
947 ((save-excursion (not (search-backward YaTeX-ec nil t)))
948 (if YaTeX-use-LaTeX2e "documentclass" "documentstyle"))
949 ((progn
950 (if (= (char-after (1- (point))) ?~) (forward-char -1))
951 (forward-char -1) (looking-at "表\\|図\\|式\\|第"))
952 "ref")
953 ((and (looking-at "[a-z \t]")
954 (progn (skip-chars-backward "a-z \t")
955 (looking-at "table\\|figure\\|formula\\|eq\\(\\.\\|uation\\)")))
956 "ref")
957 ((save-excursion
958 (skip-chars-backward "[^ア-ン]")
959 (looking-at "プログラム\\|リスト"))
960 "ref")
961 ((YaTeX-re-search-active-backward
962 (concat YaTeX-ec-regexp "begin{\\([^}]+\\)}")
963 (regexp-quote YaTeX-comment-prefix)
964 (save-excursion (forward-line -1) (point))
965 t)
966 (let ((env (YaTeX-match-string 1)))
967 (cdr (assoc env
968 '(("table" . "caption"))))))
969 ))))
971 (defun YaTeX-make-section (arg &optional beg end cmd)
972 "Make LaTeX \\section{} type command with completing read.
973 With numeric ARG, you can specify the number of arguments of
974 LaTeX command.
975 For example, if you want to produce LaTeX command
977 \\addtolength{\\topmargin}{8mm}
979 which has two arguments. You can produce that sequence by typing...
980 ESC 2 C-c s add SPC RET \\topm SPC RET 8mm RET
981 \(by default\)
982 Then yatex will automatically complete `addtolength' with two arguments
983 next time.
984 You can complete symbol at LaTeX command and the 1st argument.
986 If the optional 2nd and 3rd argument BEG END are specified, enclose
987 the region from BEG to END into the first argument of the LaTeX sequence.
988 Optional 4th arg CMD is LaTeX command name, for non-interactive use."
989 (interactive "P")
990 (setq YaTeX-current-completion-type 'section)
991 (if (or (equal arg '(4)) (YaTeX-region-active-p))
992 (setq beg (region-beginning) end (region-end)))
993 (unwind-protect
994 (let*
995 ((source-window (selected-window))
996 guess
997 (section
998 (or cmd
999 (progn
1000 (setq guess
1001 (or (YaTeX-guess-section-type) YaTeX-section-name))
1002 (YaTeX-read-section
1003 (if YaTeX-simple-messages
1004 (format "Section-type (default %s): " guess)
1005 (if (> (minibuffer-depth) 0)
1006 (format "%s???{} (default %s)%s: "
1007 YaTeX-ec guess
1008 (format "[level:%d]" (minibuffer-depth)))
1009 (format "(C-v for view-section) %s???{%s} (default %s): "
1010 YaTeX-ec (if beg "region" "") guess)))
1011 nil))))
1012 (section (if (string= section "") guess section))
1013 (numarg ;; The number of section-type command's argument
1014 (or (and (numberp arg) arg)
1015 (nth 1 (YaTeX-lookup-table section 'section))
1016 1))
1017 (arg-reader (intern-soft (concat "YaTeX::" section)))
1018 (addin-args (and arg-reader (fboundp arg-reader)))
1019 (title "")
1020 (j 1)
1021 (after-change-functions nil) ;inhibit font-locking temporarily
1022 (enable-recursive-minibuffers t)
1023 (mkarg-func
1024 (function
1025 (lambda (n)
1026 (while (<= j n)
1027 (unwind-protect
1028 (setq title
1029 (cond
1030 (addin-args (funcall arg-reader j))
1031 (YaTeX-skip-default-reader "")
1032 (t
1033 (read-string-with-history
1034 (format "Argument %d of %s: " j section)))))
1035 (insert
1036 (concat ;to allow nil return value
1037 "{" title "}")))
1038 (setq j (1+ j))))))
1039 );;let
1040 (setq YaTeX-section-name section)
1041 (if beg
1042 (let*((e (make-marker))
1043 (ar2 (intern-soft (concat "YaTeX::" section "-region")))
1044 (arp (and ar2 (fboundp ar2))))
1045 (goto-char end)
1046 (insert "}")
1047 (set-marker e (point))
1048 (goto-char beg)
1049 (unwind-protect
1050 (progn
1051 (insert YaTeX-ec YaTeX-section-name
1052 (YaTeX-addin YaTeX-section-name))
1053 (if (> numarg 1) (funcall mkarg-func (1- numarg))))
1054 (insert "{"))
1055 (if arp (funcall ar2 (point) e))
1056 (goto-char e)
1057 (set-marker e nil))
1058 (use-global-map YaTeX-recursive-map)
1059 (if (= numarg 0) (YaTeX-make-singlecmd YaTeX-section-name)
1060 (progn (insert YaTeX-ec YaTeX-section-name)
1061 (insert (YaTeX-addin YaTeX-section-name))))
1062 ;;read arguments with add-in
1063 (funcall mkarg-func numarg))
1064 (YaTeX-update-table
1065 (if (/= numarg 1) (list section numarg)
1066 (list section))
1067 'section-table 'user-section-table 'tmp-section-table)
1068 (if YaTeX-current-position-register
1069 (point-to-register YaTeX-current-position-register))
1070 (if (string= (YaTeX-buffer-substring (- (point) 2) (point))
1071 "{}")
1072 (forward-char -1))
1073 (while (string= (YaTeX-buffer-substring (- (point) 3) (1- (point)))
1074 "{}")
1075 (forward-char -2))
1076 (YaTeX-package-auto-usepackage section 'section))
1077 (if (<= (minibuffer-depth) 0) (use-global-map global-map))
1078 (insert ""))) ;insert dummy string to fontify(Emacs20)
1080 (defun YaTeX-make-section-region (args beg end)
1081 "Call YaTeX-make-section with arguments to specify region mode."
1082 (interactive "P\nr")
1083 (YaTeX-make-section args beg end))
1085 (defun YaTeX-make-fontsize (arg &optional fontsize)
1086 "Make completion like {\\large ...} or {\\slant ...} in minibuffer.
1087 If you invoke this command with universal argument, you can put region
1088 into {\\xxx } braces.
1089 \(key binding for universal-argument is \\[universal-argument]\)"
1090 (interactive "P")
1091 (YaTeX-sync-local-table 'tmp-fontsize-table)
1092 (let* ((region-p (if (or arg (YaTeX-region-active-p))
1093 (cons (region-beginning) (region-end))))
1094 (mode (if region-p "region" ""))
1095 (fontsize
1096 (or fontsize
1097 (YaTeX-read-fontsize
1098 (if YaTeX-simple-messages
1099 (format "Font or size (default %s): " YaTeX-fontsize-name)
1100 (format "{\\??? %s} (default %s)%s: " mode YaTeX-fontsize-name
1101 (if (> (minibuffer-depth) 0)
1102 (format "[level:%d]" (minibuffer-depth)) "")))
1103 nil nil))))
1104 (if (string= fontsize "")
1105 (setq fontsize YaTeX-fontsize-name))
1106 (setq YaTeX-current-completion-type 'large)
1107 (setq YaTeX-fontsize-name fontsize)
1108 (YaTeX-update-table
1109 (list YaTeX-fontsize-name)
1110 'fontsize-table 'user-fontsize-table 'tmp-fontsize-table)
1111 (and YaTeX-use-LaTeX2e
1112 (YaTeX-latex2e-p)
1113 (setq fontsize
1114 (cdr (assoc YaTeX-fontsize-name LaTeX2e-fontstyle-alist)))
1115 (setq YaTeX-fontsize-name fontsize))
1116 (if region-p
1117 (let ((b (car region-p))
1118 (e (set-marker (make-marker) (cdr region-p))))
1119 (goto-char b)
1120 (insert "{\\" YaTeX-fontsize-name " ")
1121 (goto-char e)
1122 (insert "}")
1123 (set-marker e nil))
1124 (insert (concat "{\\" YaTeX-fontsize-name " }"))
1125 (forward-char -1)
1126 (if YaTeX-current-position-register
1127 (point-to-register YaTeX-current-position-register))
1128 (save-excursion
1129 (insert (YaTeX-addin YaTeX-fontsize-name)))
1130 (YaTeX-package-auto-usepackage YaTeX-fontsize-name 'large))))
1132 (defun YaTeX-make-fontsize-region ()
1133 "Call function:YaTeX-make-fontsize with ARG to specify region mode."
1134 (interactive)
1135 (YaTeX-make-fontsize t))
1137 (defvar YaTeX-singlecmd-suffix "" "*Suffix for maketitle-type commands.")
1138 (defvar YaTeX-read-singlecmd-history nil "Holds maketitle-type history.")
1139 (put 'YaTeX-read-singlecmd-history 'no-default t)
1140 (defun YaTeX-make-singlecmd (single)
1141 (interactive
1142 (list (YaTeX-cplread-with-learning
1143 (if YaTeX-simple-messages
1144 (format "maketitle-type (default %s): " YaTeX-single-command)
1145 (format "%s??? (default %s)%s: " YaTeX-ec YaTeX-single-command
1146 (if (> (minibuffer-depth) 0)
1147 (format "[level:%d]" (minibuffer-depth)) "")))
1148 'singlecmd-table 'user-singlecmd-table 'tmp-singlecmd-table
1149 nil nil nil 'YaTeX-read-singlecmd-history)))
1150 (if (string= single "")
1151 (setq single YaTeX-single-command))
1152 (setq YaTeX-single-command single)
1153 (setq YaTeX-current-completion-type 'maketitle)
1154 (let ((dollar (and (not (YaTeX-in-math-mode-p))
1155 (YaTeX-math-member-p YaTeX-single-command)))
1156 p q)
1157 (if dollar (insert "$"))
1158 (insert YaTeX-ec YaTeX-single-command)
1159 (setq p (point))
1160 (insert (YaTeX-addin single) YaTeX-singlecmd-suffix)
1161 (if dollar (insert "$"))
1162 (setq q (point))
1163 (goto-char p)
1164 (forward-char -2)
1165 (if (looking-at "\\[\\]") (forward-char 1) (goto-char q)))
1166 (YaTeX-package-auto-usepackage YaTeX-single-command 'maketitle)
1167 (if YaTeX-current-position-register
1168 (point-to-register YaTeX-current-position-register)))
1170 (defvar YaTeX-completion-begin-regexp "[{\\]"
1171 "Regular expression of limit where LaTeX command's completion begins.")
1173 (defun YaTeX-do-completion ()
1174 "Try completion on LaTeX command preceding point."
1175 (interactive)
1176 (if
1177 (or (eq (preceding-char) ? )
1178 (eq (preceding-char) ?\t)
1179 (eq (preceding-char) ?\n)
1180 (bobp))
1181 (message "Nothing to complete.") ;Do not complete
1182 (let* ((end (point))
1183 (limit (point-beginning-of-line))
1184 (completion-begin
1185 (progn (re-search-backward "[ \t\n]" limit 1) (point)))
1186 (begin (progn
1187 (goto-char end)
1188 (if (re-search-backward YaTeX-completion-begin-regexp
1189 completion-begin t)
1190 (1+ (point))
1191 nil))))
1192 (goto-char end)
1193 (cond
1194 ((null begin)
1195 (message "I think it is not a LaTeX sequence."))
1196 (t
1197 (mapcar 'YaTeX-sync-local-table
1198 '(tmp-section-table tmp-env-table tmp-singlecmd-table))
1199 (let*((pattern (YaTeX-buffer-substring begin end))
1200 (all-table
1201 (append
1202 section-table user-section-table tmp-section-table
1203 env-table user-env-table tmp-env-table
1204 singlecmd-table user-singlecmd-table tmp-singlecmd-table))
1205 ;; First,
1206 ;; search completion without backslash.
1207 (completion (try-completion pattern all-table)))
1208 (if
1209 (eq completion nil)
1210 ;; Next,
1211 ;; search completion with backslash
1212 (setq completion
1213 (try-completion
1214 (YaTeX-buffer-substring (1- begin) end)
1215 all-table nil)
1216 begin (1- begin)))
1217 (cond
1218 ((null completion)
1219 (message (concat "Can't find completion for '" pattern "'"))
1220 (ding))
1221 ((eq completion t) (message "Sole completion."))
1222 ((not (string= completion pattern))
1223 (delete-region begin end)
1224 (insert completion)
1226 (t
1227 (message "Making completion list...")
1228 (with-output-to-temp-buffer "*Help*"
1229 (display-completion-list
1230 (all-completions pattern all-table)))))))))))
1232 (defun YaTeX-toggle-modify-mode (&optional arg)
1233 (interactive "P")
1234 (or (memq 'YaTeX-modify-mode mode-line-format)
1235 (setq mode-line-format
1236 (append (list "" 'YaTeX-modify-mode) mode-line-format)))
1237 (if (or arg (null YaTeX-modify-mode))
1238 (progn
1239 (setq YaTeX-modify-mode "*m*")
1240 (message "Modify mode"))
1241 (setq YaTeX-modify-mode nil)
1242 (message "Cancel modify mode."))
1243 (set-buffer-modified-p (buffer-modified-p))) ;redraw mode-line
1245 (defun YaTeX-switch-mode-menu (arg &optional char)
1246 (interactive "P")
1247 (message "Toggle: (M)odify-mode ma(T)h-mode")
1248 (let ((c (or char (read-char))))
1249 (cond
1250 ((= c ?m) (YaTeX-toggle-modify-mode arg))
1251 ((or (= c ?$) (= c ?t))
1252 (if YaTeX-auto-math-mode
1253 (message "Makes no sense in YaTeX-auto-math-mode.")
1254 (YaTeX-toggle-math-mode arg))))))
1256 (defun YaTeX-insert-quote ()
1257 (interactive)
1258 (insert
1259 (cond
1260 ((YaTeX-literal-p) ?\")
1261 ((= (preceding-char) ?\\ ) ?\")
1262 ;((= (preceding-char) ?\( ) ?\")
1263 ((or (= (preceding-char) 32)
1264 (= (preceding-char) 9)
1265 (= (preceding-char) ?\n)
1266 (bobp)
1267 (string-match
1268 (regexp-quote (char-to-string (preceding-char)))
1269 "、。,.?!「」『』【】()"))
1270 "``")
1271 (t "''"))))
1273 (defun YaTeX-closable-p ()
1274 (and (not YaTeX-modify-mode)
1275 (not (eq YaTeX-close-paren-always 'never))
1276 (or YaTeX-close-paren-always (eolp))
1277 (not (input-pending-p))
1278 (not (YaTeX-literal-p)))
1279 ;;(or YaTeX-modify-mode
1280 ;; (and (not YaTeX-close-paren-always) (not (eolp)))
1281 ;; (input-pending-p)
1282 ;; (YaTeX-quick-in-environment-p "verbatim"))
1285 (defun YaTeX-insert-braces-region (beg end &optional open close)
1286 (interactive "r")
1287 (save-excursion
1288 (goto-char end)
1289 (YaTeX-insert-inherit (or close "}"))
1290 (goto-char beg)
1291 (YaTeX-insert-inherit (or open "{"))))
1293 (defun YaTeX-get-macro-at-point (&optional p)
1294 "Get (La)TeX macro around point P."
1295 (interactive "d")
1296 (save-excursion
1297 (goto-char (setq p (or p (point))))
1298 (let ((token (substring (substring YaTeX-TeX-token-regexp 1) 0 -2))
1299 bsend)
1300 (and (not (bobp))
1301 (or (looking-at YaTeX-TeX-token-regexp)
1302 (string-match
1303 YaTeX-TeX-token-regexp (char-to-string (preceding-char))))
1304 (progn
1305 (skip-chars-backward token)
1306 (equal (preceding-char) ?\\))
1307 (save-excursion
1308 (setq bsend (point))
1309 (skip-chars-backward "\\\\") ;emacs18 doesn't return distance
1310 (/= (% (- bsend (point)) 2) 0)) ;consider \\
1311 (looking-at YaTeX-TeX-token-regexp)
1312 (YaTeX-match-string 0)))))
1314 (defun YaTeX-insert-braces (arg &optional open close)
1315 (interactive "p")
1316 (let ((begend-guide
1317 (function
1318 (lambda ()
1319 (if (equal (get 'YaTeX-insert-braces 'begend-guide) 2)
1320 nil ;if triggered thrice, do nothing
1321 (momentary-string-display
1322 (format
1323 (cond
1324 (YaTeX-japan "begin/end入力には %s を使いましょう")
1325 (t "You don't understand Zen of `%s'!"))
1326 (key-description
1327 (car (where-is-internal 'YaTeX-make-begin-end))))
1328 (point))
1329 (put 'YaTeX-insert-braces 'begend-guide
1330 (+ 1 (YaTeX-str2int ;increment counter of beg-end guidance
1331 (prin1-to-string
1332 (get 'YaTeX-insert-braces 'begend-guide)))))))))
1333 env macro not-literal b e)
1334 (cond
1335 ((YaTeX-region-active-p)
1336 (YaTeX-insert-braces-region (region-beginning) (region-end)))
1337 ((YaTeX-jmode) (YaTeX-self-insert arg))
1338 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
1339 ((save-excursion
1340 (and (> (- (point) (point-min)) 6)
1341 (condition-case () (forward-char -6) (error nil)))
1342 (looking-at "\\\\left\\\\"))
1343 (insert "{\\right\\}")
1344 (forward-char -8))
1345 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
1346 (and (> (- (point) (point-min)) 6) (forward-char -6))
1347 (looking-at "\\\\[bB]igl\\\\"))
1348 (insert
1349 (concat
1350 "{" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\}"))
1351 (forward-char -7))
1352 ((save-excursion
1353 (and (> (- (point) (point-min)) 7)
1354 (condition-case () (forward-char -7) (error nil)))
1355 (looking-at "\\\\[bB]iggl\\\\"))
1356 (insert
1357 (concat
1358 "{" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\}"))
1359 (forward-char -8))
1360 ((= (preceding-char) ?\\ )
1361 (insert "{\\}")
1362 (forward-char -2)) ;matsu's hack ends here
1363 ((and (setq not-literal (not (YaTeX-literal-p)))
1364 (equal "end" (setq macro (YaTeX-get-macro-at-point)))
1365 (setq env (YaTeX-inner-environment)))
1366 (funcall begend-guide)
1367 (insert "{" env "}"))
1368 ((and not-literal (equal "begin" macro))
1369 (insert "{")
1370 (save-excursion
1371 (indent-to (prog1 (- (current-column) 7) (insert "}\n")))
1372 (insert "\\end{}")
1373 (setq e (point)))
1374 (setq env
1375 (YaTeX-read-environment
1376 (format "Begin environment(default %s): " YaTeX-env-name)))
1377 (if (string= "" env) (setq env YaTeX-env-name))
1378 (setq YaTeX-env-name env)
1379 (funcall begend-guide)
1380 (delete-region (- (point) 7) e)
1381 (YaTeX-insert-begin-end env nil))
1382 (t
1383 (insert (or open "{") (or close "}"))
1384 (forward-char -1)
1385 (if (and (eq (char-after (point)) ?\}) ;; the case `\\{}'
1386 (eq (char-after (- (point) 2)) ?\\ ))
1387 (progn (insert "\\") (forward-char -1)))
1388 ))))
1390 (defun YaTeX-jmode ()
1391 (or (and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
1392 (and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*)
1393 (and (boundp 'skk-mode) skk-mode (not skk-latin-mode))
1394 (and (boundp 'default-input-method) default-input-method
1395 current-input-method)))
1397 (defun YaTeX-jmode-off ()
1398 (if (cond
1399 ((and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
1400 (canna-toggle-japanese-mode) t)
1401 ((and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*)
1402 (egg:toggle-egg-mode-on-off) t)
1403 ((and (fboundp 'skk-mode) (boundp 'skk-mode) skk-mode)
1404 (cond
1405 ((fboundp 'skk-latin-mode)
1406 (or (and (boundp 'skk-henkan-mode) skk-henkan-mode)
1407 (and (boundp 'skk-henkan-on)
1408 (or skk-henkan-mode skk-henkan-active))
1409 (and (boundp 'j-henkan-on)
1410 (or j-henkan-on j-henkan-active))
1411 ;; Deactivate jmode if henkan-mode is not running.
1412 ;; Suggested by tt.tetsuo.tsukamoto.
1413 (progn
1414 (put 'YaTeX-jmode-on 'skkkata skk-katakana)
1415 (skk-latin-mode t))))
1416 ((fboundp 'skk-mode-off) (skk-mode-off))
1417 (t (j-mode-off)))
1418 t)
1419 ((and (fboundp 'toggle-input-method) current-input-method)
1420 (toggle-input-method) t)
1421 ((and (fboundp 'fep-force-off) (fep-force-off))))
1422 (put 'YaTeX-jmode 'jmode t)))
1424 (defun YaTeX-jmode-on ()
1425 (cond
1426 ((boundp 'canna:*japanese-mode*)
1427 (if (not canna:*japanese-mode*) (canna-toggle-japanese-mode)))
1428 ((boundp 'egg:*mode-on*)
1429 (and (not egg:*mode-on*) (not egg:*input-mode*)
1430 (egg:toggle-egg-mode-on-off)))
1431 ((and (fboundp 'skk-mode) (boundp 'skk-mode))
1432 (if (get 'YaTeX-jmode-on 'skkkata)
1433 (skk-j-mode-on t)
1434 (skk-mode 1))
1435 (put 'YaTeX-jmode-on 'skkkata nil))
1436 ((fboundp 'toggle-input-method)
1437 (if (not current-input-method) (toggle-input-method)))
1438 ((and (fboundp 'fep-force-on) (fep-force-on)))))
1440 (defun YaTeX-jmode-back ()
1441 (if (get 'YaTeX-jmode 'jmode)
1442 (YaTeX-jmode-on))
1443 (setplist 'YaTeX-jmode nil))
1445 (defun YaTeX-self-insert (arg)
1446 (call-interactively (global-key-binding (char-to-string (YaTeX-last-key)))))
1447 (defun YaTeX-insert-inherit (&rest args)
1448 (apply (if (fboundp 'insert-and-inherit) 'insert-and-inherit 'insert)
1449 args))
1451 (defun YaTeX-insert-brackets (arg)
1452 "Insert Kagi-kakko or \\ [ \\] pair or simply \[."
1453 (interactive "p")
1454 (let ((col (1- (current-column))))
1455 (cond
1456 ((YaTeX-region-active-p)
1457 (YaTeX-insert-brackets-region (region-beginning) (region-end)))
1458 ((YaTeX-jmode) (YaTeX-self-insert arg))
1459 ((not (YaTeX-closable-p))
1460 (YaTeX-self-insert arg))
1461 ((save-excursion
1462 (and (> (- (point) (point-min)) 5) (forward-char -5))
1463 (looking-at "\\\\left"))
1464 (YaTeX-insert-inherit "[\\right]")
1465 (forward-char -7))
1466 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
1467 (and (> (- (point) (point-min)) 5) (forward-char -5))
1468 (looking-at "\\\\[bB]igl"))
1469 (YaTeX-insert-inherit
1470 (concat
1471 "[" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r]"))
1472 (forward-char -6))
1473 ((save-excursion
1474 (and (> (- (point) (point-min)) 6) (forward-char -6))
1475 (looking-at "\\\\[bB]iggl"))
1476 (YaTeX-insert-inherit
1477 (concat
1478 "[" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r]"))
1479 (forward-char -7)) ;matsu's hack ends here
1480 ((and (= (preceding-char) ?\\ )
1481 (/= (char-after (- (point) 2)) ?\\ )
1482 (not (YaTeX-in-math-mode-p)))
1483 (YaTeX-insert-inherit (YaTeX-last-key) "\n")
1484 (indent-to (max 0 col))
1485 (YaTeX-insert-inherit "\\]")
1486 (beginning-of-line)
1487 (open-line 1)
1488 (delete-region (point) (progn (beginning-of-line) (point)))
1489 (indent-to (+ YaTeX-environment-indent (max 0 col)))
1490 (or YaTeX-auto-math-mode YaTeX-math-mode (YaTeX-toggle-math-mode 1)))
1491 ((YaTeX-closable-p)
1492 (YaTeX-insert-inherit "[]")
1493 (backward-char 1))
1494 (t (YaTeX-self-insert arg)))))
1496 (defun YaTeX-insert-brackets-region (beg end)
1497 (interactive "r")
1498 (YaTeX-insert-braces-region beg end "[" "]"))
1500 (defun YaTeX-insert-parens (arg)
1501 "Insert parenthesis pair."
1502 (interactive "p")
1503 (cond
1504 ((YaTeX-region-active-p)
1505 (YaTeX-insert-parens-region (region-beginning) (region-end)))
1506 ((YaTeX-jmode) (YaTeX-self-insert arg))
1507 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
1508 ((save-excursion
1509 (and (> (- (point) (point-min)) 5) (forward-char -5))
1510 (looking-at "\\\\left"))
1511 (YaTeX-insert-inherit "(\\right)")
1512 (forward-char -7))
1513 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
1514 (and (> (- (point) (point-min)) 5) (forward-char -5))
1515 (looking-at "\\\\[bB]igl"))
1516 (YaTeX-insert-inherit
1517 (concat
1518 "(" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r)"))
1519 (forward-char -6))
1520 ((save-excursion
1521 (and (> (- (point) (point-min)) 6) (forward-char -6))
1522 (looking-at "\\\\[bB]iggl"))
1523 (YaTeX-insert-inherit
1524 (concat
1525 "(" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r)"))
1526 (forward-char -7))
1527 ((= (preceding-char) ?\\ ) ;matsu's hack ends here
1528 (YaTeX-insert-inherit "(\\)")
1529 (backward-char 2))
1530 ((YaTeX-closable-p)
1531 (YaTeX-insert-inherit "()")
1532 (backward-char 1))
1533 (t (YaTeX-self-insert arg))))
1535 (defun YaTeX-insert-parens-region (beg end)
1536 (interactive "r")
1537 (YaTeX-insert-braces-region beg end "(" ")"))
1539 (defun YaTeX-insert-bar (arg)
1540 "Insert bar pair."
1541 (interactive "p")
1542 (cond
1543 ((YaTeX-jmode) (YaTeX-self-insert arg))
1544 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
1545 ((save-excursion
1546 (and (> (- (point) (point-min)) 5) (forward-char -5))
1547 (looking-at "\\\\left"))
1548 (YaTeX-insert-inherit "|\\right|")
1549 (forward-char -7))
1550 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
1551 (and (> (- (point) (point-min)) 5) (forward-char -5))
1552 (looking-at "\\\\[bB]igl"))
1553 (insert
1554 (concat
1555 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r|"))
1556 (forward-char -6))
1557 ((save-excursion
1558 (and (> (- (point) (point-min)) 6) (forward-char -6))
1559 (looking-at "\\\\[bB]iggl"))
1560 (insert
1561 (concat
1562 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r|"))
1563 (forward-char -7))
1564 ((save-excursion ; added by Jin <MAF01011<at>nifty.ne.jp>
1565 (and (> (- (point) (point-min)) 6) (forward-char -6))
1566 (looking-at "\\\\left\\\\"))
1567 (YaTeX-insert-inherit "|\\right\\|")
1568 (forward-char -8))
1569 ((save-excursion
1570 (and (> (- (point) (point-min)) 6) (forward-char -6))
1571 (looking-at "\\\\[bB]igl\\\\"))
1572 (insert
1573 (concat
1574 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\|"))
1575 (forward-char -7))
1576 ((save-excursion
1577 (and (> (- (point) (point-min)) 7) (forward-char -7))
1578 (looking-at "\\\\[bB]iggl\\\\"))
1579 (insert
1580 (concat
1581 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\|"))
1582 (forward-char -8)) ; added by Jin up to here.
1583 ((= (preceding-char) ?\\ )
1584 (YaTeX-insert-inherit "|\\|")
1585 (backward-char 2))
1586 ; ((and (YaTeX-closable-p)
1587 ; (/= (preceding-char) ?|)
1588 ; (/= (following-char) ?|))
1589 ; (YaTeX-insert-inherit "||")
1590 ; (backward-char 1))
1591 (t (YaTeX-self-insert arg))))
1593 (defvar YaTeX-use-jmode-hook
1594 (and (featurep 'canna) (boundp 'canna:*initialized*) canna:*initialized*)
1595 ;; (not (and (fboundp 'skk-mode) (boundp 'skk-mode)))
1596 "*Non-nil means activate automatic jmode switcher within/out math mode.
1597 Hopefully, change default to t in the next version of 1.75.")
1598 (defun YaTeX-jmode-hook (old new)
1599 "A hook controling jmode on/off."
1600 ;; This function is called via point-entered/leave hook, so that
1601 ;; codes in it is evaluated on such emacsen as having text-properties.
1602 (let ((inhibit-point-motion-hooks t)
1603 (oldp (plist-get (text-properties-at old) 'point-left))
1604 (newp (plist-get (text-properties-at new) 'point-left))
1605 (lnew (plist-get (text-properties-at new) 'last-new))
1606 (mjmode (plist-get (text-properties-at new) 'mjmode))
1607 (bmp (buffer-modified-p))
1608 (jm (YaTeX-jmode)) b e)
1609 (unwind-protect
1610 (cond
1611 ((eq lnew new) nil) ;Do nothing if continuous entry
1612 ((and (not (eq newp 'YaTeX-jmode-hook))
1613 (eq oldp 'YaTeX-jmode-hook)
1614 (plist-get (text-properties-at old) 'entered))
1615 ;; leave
1616 (remove-text-properties
1617 (setq b (1+ (or (previous-single-property-change old 'point-left)
1618 (1- (point)))))
1619 (setq e (1- (or (next-single-property-change old 'point-left)
1620 (1+ (point)))))
1621 (list 'last-new nil 'entered nil))
1622 (add-text-properties b e (list 'mjmode jm))
1623 (if (boundp 'skk-katakana)
1624 (put 'YaTeX-jmode-on 'skkkata skk-katakana))
1625 (if (plist-get (text-properties-at old) 'jmode)
1626 (YaTeX-jmode-on)))
1627 ((and (not (eq oldp 'YaTeX-jmode-hook))
1628 (eq newp 'YaTeX-jmode-hook)
1629 (not (plist-get (text-properties-at new) 'entered)))
1630 ;; enter
1631 (add-text-properties
1632 (1+ (or (previous-single-property-change new 'point-left)
1633 (1- (point))))
1634 (1- (or (next-single-property-change new 'point-left)
1635 (1+ (point))))
1636 (list 'jmode jm 'last-new new 'entered t))
1637 (if (boundp 'skk-katakana) ;care for skk katakana mode
1638 (put 'YaTeX-jmode-on 'skkkata skk-katakana))
1639 (if mjmode (YaTeX-jmode-on) (YaTeX-jmode-off))))
1640 ;;unwind job
1641 (set-buffer-modified-p bmp))))
1643 (defun YaTeX-insert-dollar ()
1644 (interactive)
1645 (if (or (not (YaTeX-closable-p))
1646 (= (preceding-char) 92)
1647 (and (YaTeX-in-math-mode-p)
1648 (or (/= (preceding-char) ?$) (/= (following-char) ?$))))
1649 (insert "$")
1650 (insert "$$")
1651 (forward-char -1)
1652 (and YaTeX-use-jmode-hook
1653 (fboundp 'add-text-properties)
1654 (add-text-properties
1655 (1- (point)) (1+ (point))
1656 (list 'point-left 'YaTeX-jmode-hook
1657 'point-entered 'YaTeX-jmode-hook
1658 'front-sticky t
1659 'rear-nonsticky t
1660 'mjmode nil
1661 'jmode (YaTeX-jmode))))
1662 (YaTeX-jmode-off)
1663 (or YaTeX-auto-math-mode YaTeX-math-mode (YaTeX-toggle-math-mode 1))))
1665 (defun YaTeX-insert-dollars-region (beg end)
1666 (interactive "r")
1667 (YaTeX-insert-braces-region beg end "$" "$"))
1669 (defun YaTeX-insert-amper ()
1670 (interactive)
1671 (if (or (string-match YaTeX-array-env-regexp
1672 (or (YaTeX-inner-environment t) "document"))
1673 (= (preceding-char) 92)
1674 (YaTeX-literal-p)
1675 (YaTeX-in-math-mode-p))
1676 (insert "&")
1677 (insert "\\&")))
1679 (defun YaTeX-version ()
1680 "Return string of the version of running YaTeX."
1681 (interactive)
1682 (message
1683 (concat "Yet Another tex-mode "
1684 (if YaTeX-japan "「野鳥」" "`Wild Bird'")
1685 " Revision "
1686 YaTeX-revision-number)))
1688 (defun YaTeX-typeset-menu (arg &optional char)
1689 "Typeset, preview, visit error and miscellaneous convenient menu.
1690 Optional second argument CHAR is for non-interactive call from menu."
1691 (interactive "P")
1692 (message
1693 (concat "J)latex R)egion E)nv B)ibtex mk(I)dx "
1694 "latex+p(D)f "
1695 (if (fboundp 'start-process) "K)ill ")
1696 "P)review "
1697 (and (boundp 'window-system) window-system "S)earch ")
1698 "V)iewErr L)pr"))
1699 (let ((sw (selected-window)) (c (or char (read-char))))
1700 (require 'yatexprc) ;for Nemacs's bug
1701 (select-window sw)
1702 (cond
1703 ((memq c '(?j ?\C-j)) (YaTeX-typeset-buffer) ; memq for usability test
1704 (put 'dvi2-command 'format 'dvi))
1705 ((= c ?r) (YaTeX-typeset-region))
1706 ((= c ?e) (YaTeX-typeset-environment))
1707 ((= c ?b) (YaTeX-call-builtin-on-file
1708 "BIBTEX" bibtex-command arg))
1709 ((= c ?i) (YaTeX-call-builtin-on-file
1710 "MAKEINDEX" makeindex-command arg))
1711 ((= c ?k) (YaTeX-kill-typeset-process YaTeX-typeset-process))
1712 ((= c ?p) (call-interactively 'YaTeX-preview))
1713 ((= c ?q) (YaTeX-system "lpq" "Printer queue"))
1714 ((= c ?d) (YaTeX-typeset-buffer
1715 (or (YaTeX-get-builtin "DVIPDF") YaTeX-dvipdf-command))
1716 (put 'dvi2-command 'format 'pdf))
1717 ((= c ?v) (YaTeX-view-error))
1718 ((= c ?l) (YaTeX-lpr arg))
1719 ((= c ?m) (YaTeX-switch-mode-menu arg))
1720 ((= c ?s) (YaTeX-xdvi-remote-search arg)))))
1722 (if (fboundp 'wrap-function-to-control-ime)
1723 (wrap-function-to-control-ime 'YaTeX-typeset-menu t "P"))
1726 (defun YaTeX-%-menu (&optional beg end char)
1727 "Operate %# notation."
1728 ;;Do not use interactive"r" for the functions which require no mark
1729 (interactive)
1730 (message "!)Edit-%%#! D)VIPDF B)EGIN-END P)review pdf(V)iew L)PR M)akeidx b)ibtex dp(I)")
1731 (let ((c (or char (read-char))) (string "") key
1732 (b (make-marker)) (e (make-marker)))
1733 (save-excursion
1734 (cond
1735 ((rindex "!plmibdv" c) ;Edit %#xxx
1736 (setq key (cdr (assq c '((?! . "!")
1737 (?p . "PREVIEW")
1738 (?l . "LPR")
1739 (?m . "MAKEINDEX")
1740 (?d . "DVIPDF")
1741 (?v . "PDFVIEW")
1742 (?i . "IMAGEDPI")
1743 (?b . "BIBTEX")))))
1744 (YaTeX-getset-builtin key t))
1746 ((= c ?B) ;%#BEGIN %#END region
1747 (or end (setq beg (min (point) (mark)) end (max (point) (mark))))
1748 (set-marker b beg)
1749 (set-marker e end)
1750 (goto-char (point-min))
1751 (while (re-search-forward "^%#\\(BEGIN\\)\\|\\(END\\)$" nil t)
1752 (beginning-of-line)
1753 (delete-region (point) (progn (forward-line 1) (point))))
1754 (goto-char b)
1755 (open-line 1)
1756 (delete-region (point) (progn (beginning-of-line)(point)));for 19 :-<
1757 (insert "%#BEGIN")
1758 (goto-char e)
1759 (insert "%#END\n")
1760 (set-marker b nil)
1761 (set-marker e nil))))))
1763 (defvar YaTeX-refcommand-def-regexp-default
1764 "label\\|bibitem")
1765 (defvar YaTeX-refcommand-def-regexp-private nil
1766 "*Regexp of defining label commands")
1767 (defvar YaTeX-refcommand-def-regexp
1768 (concat (if YaTeX-refcommand-def-regexp-private
1769 (concat YaTeX-refcommand-def-regexp-private "\\|"))
1770 YaTeX-refcommand-def-regexp-default))
1772 (defvar YaTeX-refcommand-ref-regexp-default
1773 "\\(page\\|eq\\|fig\\)?ref\\|cite"
1774 "Regexp of LaTeX's label-referring macros.
1775 Searching for this will be done without `\\\\'.
1776 So you need not add patterns if new referring macro ends with \"ref\".")
1777 (defvar YaTeX-refcommand-ref-regexp-private nil
1778 "*Regexp of referring label commands.
1779 See documentation of `YaTeX-refcommand-ref-regexp-default'.")
1780 (defvar YaTeX-refcommand-ref-regexp
1781 (concat (if YaTeX-refcommand-ref-regexp-private
1782 (concat YaTeX-refcommand-ref-regexp-private "\\|"))
1783 YaTeX-refcommand-ref-regexp-default))
1785 (defvar YaTeX-refcommand-regexp
1786 (concat YaTeX-refcommand-def-regexp
1787 "\\|" YaTeX-refcommand-ref-regexp)
1788 "Regexp of label defining/referring command name.")
1790 (defun YaTeX-goto-corresponding-label (reverse &optional otherwin)
1791 "Jump to corresponding \\label{} and \\ref{} or \\cite and \\bibitem.
1792 The default search direction depends on the command at the cursor position.
1793 When the cursor is on \\ref(\\cite), YaTeX will try to search the
1794 corresponding \\label(\\bibitem) backward,
1795 and if it fails search forward again. And when the cursor is
1796 on \\label(\\bibitem), YaTeX will search the corresponding \\ref(\\cite)
1797 forward at first and secondary backward.
1798 Argument REVERSE non-nil makes the default
1799 direction rule reverse. Since Search string is automatically set in
1800 search-last-string, you can repeat search the same label/ref by typing
1801 \\[isearch-forward] or \\[isearch-backward].
1802 If optional second argument OTHERWIN is non-nil, move to other window."
1804 (let ((scmd "") label direc string blist (p (point)) (cb (current-buffer))
1805 (refcommands YaTeX-refcommand-regexp)
1806 (foundmsg (format "Type %s %c to return to original position."
1807 (key-description
1808 (car
1809 (or (where-is-internal 'register-to-point)
1810 (where-is-internal 'jump-to-register))))
1811 YaTeX-current-position-register))
1812 (func (function (lambda (string sfunc)
1813 (or
1814 (funcall sfunc string nil t)
1815 (funcall (if (eq sfunc 're-search-forward)
1816 're-search-backward 're-search-forward)
1817 string nil t))))))
1818 (cond
1819 ((YaTeX-on-section-command-p refcommands)
1820 (setq scmd
1821 (cdr
1822 (assoc
1823 (YaTeX-match-string 1)
1824 '(("label" . "\\\\\\(page\\|eq\\)?ref{%k}")
1825 ("ref" . "\\\\label{%k}")
1826 ("eqref" . "\\\\label{%k}")
1827 ("pageref" . "\\\\label{%k}")
1828 ("cite" .
1829 "\\\\bibitem\\(\\[[^]]+\\]\\)?{%k}\\|^\\s *@[a-z]+{%k,")
1830 ("bibitem" . "\\\\cite\\(\\[[^]]+\\]\\)?")))))
1831 (goto-char (match-end 0))
1832 (let ((label (YaTeX-buffer-substring
1833 (1- (point)) (progn (backward-list 1) (1+ (point)))))
1834 (fp (make-marker))fl fn
1835 (goother (function (lambda (buffer point)
1836 (goto-char point)
1837 (if (one-window-p)
1838 (split-window-calculate-height
1839 YaTeX-default-pop-window-height))
1840 (select-window (get-lru-window))
1841 (switch-to-buffer buffer)))))
1842 ;(setq string (concat "\\" scmd "{" label "}"))
1843 ;(setq string (concat "\\\\" scmd "{" (regexp-quote label) "}"))
1844 (setq string (YaTeX-replace-format scmd "k" (regexp-quote label)))
1845 (setq direc (if (string-match "ref\\|cite" scmd)
1846 're-search-forward 're-search-backward))
1847 (if YaTeX-current-position-register
1848 (point-to-register YaTeX-current-position-register))
1849 (if reverse (setq direc (if (eq direc 're-search-forward)
1850 're-search-backward 're-search-forward)))
1851 (if (funcall func string direc) ;label/ref found!
1852 (progn
1853 (if otherwin (funcall goother cb p))
1854 (goto-char (match-beginning 0))
1855 (push-mark p))
1856 ;;if label/ref not found, search through all yatex buffers.
1857 (goto-char p) ;resume position of current buffer
1858 (catch 'found
1859 (setq blist (YaTeX-yatex-buffer-list))
1860 (while blist
1861 ;; search for corresponding keyword
1862 (set-buffer (car blist))
1863 (if (YaTeX-on-section-command-p refcommands)
1864 (goto-char (match-beginning 0)))
1865 (cond
1866 ; cond1
1867 ((funcall func string direc)
1868 (cond
1869 (otherwin
1870 (set-buffer cb)
1871 (funcall goother (car blist) p))
1872 ((or (get-buffer-window (car blist))
1873 (and YaTeX-emacs-19
1874 (get-buffer-window (car blist) t)))
1875 (goto-buffer-window (car blist)))
1876 (t
1877 (switch-to-buffer (car blist))
1878 (message foundmsg)))
1879 (goto-char (match-beginning 0))
1880 (throw 'found t))
1881 ; cond2
1882 ((and
1883 (string-match "bibitem" scmd)
1884 (catch 'found2
1885 (save-excursion
1886 (goto-char (point-min))
1887 (while (YaTeX-re-search-active-forward
1888 "\\\\bibliography{\\([^}]*\\)}" "%" nil t)
1889 (setq fl (YaTeX-split-string (YaTeX-match-string 1) ","))
1890 (while fl
1891 (if (or (file-exists-p (setq fn (car fl)))
1892 (file-exists-p (setq fn (concat fn ".bib"))))
1893 (progn
1894 (set-buffer (find-file-noselect fn))
1895 (save-excursion
1896 (goto-char (point-min))
1897 (if (YaTeX-re-search-active-forward
1898 string "%" nil t)
1899 (throw 'found2
1900 (set-marker fp (point)))))))
1901 (setq fl (cdr fl)))))))
1902 (if otherwin
1903 (funcall goother (marker-buffer fp) fp)
1904 (switch-to-buffer (marker-buffer fp))
1905 (goto-char fp))
1906 (set-marker fp nil)
1907 (message foundmsg)
1908 (throw 'found t)))
1909 (setq blist (cdr blist)))
1910 ;; search for bibliography
1911 )))
1912 (if YaTeX-emacs-19
1913 (setq regexp-search-ring
1914 (cons string (delete string regexp-search-ring)))
1915 (setq search-last-regexp string)))
1916 (t nil))))
1918 ;;YaTeX-goto-corresponding-environment was moved to yatexlib
1920 (defun YaTeX-goto-corresponding-file (&optional other)
1921 "Visit or switch buffer of corresponding file,
1922 looking at \\input or \\include or \\includeonly on current line."
1923 (if (not (YaTeX-on-includes-p)) nil
1924 (let ((parent buffer-file-name) input-file b)
1925 (save-excursion
1926 (if (and (re-search-forward "[{%]" (point-end-of-line) t)
1927 (= ?{ (char-after (match-beginning 0))))
1928 nil
1929 (skip-chars-backward "^,{"))
1930 (setq input-file
1931 (YaTeX-buffer-substring
1932 (point) (progn (skip-chars-forward "^ ,}") (point))))
1933 (if (not (string-match "\\.\\(tex\\|sty\\)$" input-file))
1934 (setq input-file (concat input-file ".tex"))))
1935 (cond
1936 (other (YaTeX-switch-to-buffer-other-window input-file))
1937 ((setq b (YaTeX-get-file-buffer input-file))
1938 (goto-buffer-window b))
1939 (t (YaTeX-switch-to-buffer input-file)))
1940 (or (YaTeX-get-builtin "!")
1941 YaTeX-parent-file
1942 (setq YaTeX-parent-file parent)))))
1944 (defun YaTeX-goto-corresponding-BEGIN-END ()
1945 (if (not (YaTeX-on-BEGIN-END-p)) nil
1946 (if (cond
1947 ((equal (match-beginning 0) (match-beginning 1)) ;if on %#BEGIN
1948 (not (search-forward "%#END" nil t)))
1949 (t ; if on %#END
1950 (not (search-backward "%#BEGIN" nil t))))
1951 (error "Corresponding %%#BEGIN/END not found."))
1952 (beginning-of-line)
1953 t))
1955 (defvar YaTeX-processed-file-regexp-alist nil
1956 "Alist of regexp of processed file regexp vs. its file name part;
1957 For example, if you include image file with `\\epsfile{file=FILE}' where
1958 `FILE' is processed file. You might want to view FILE with other previewer
1959 such as ghostview, or want to preview its source which was drawn with
1960 other drawing tool, tgif for example. Then you should set entire regexp
1961 of including expression and enclose its file name part with \\\\( and \\\\).
1963 Ex. (\"\\\\\\\\epsfile{[^}]*file=\\\\([^,} ]+\\\\)\\\\(\\\\.e?ps\\\\)?[^}]*}\" 1)
1965 Where the first group surrounded by \\\\( and \\\\) is the file name part
1966 of expression. So you should set 1 to second element. And the first
1967 matching group is sent to (image) processor defined by the variable
1968 YaTeX-file-processor-alist. See also the documentation of
1969 YaTeX-file-processor-alist.
1971 ↑じゃ良くわかんないすね。例えば tgif hoge.obj して hoge.eps を
1972 \\epsfile{file=hoge.eps} でインクルードしているとしよう。その行で
1973 \[prefix\] g を押した時に tgif を起動して欲しかったら、まず上のような
1974 正規表現を設定する。\\\\(と\\\\)で囲んだところがファイル名になるように
1975 注意する。でファイル名部分が何番目の\\\\(\\\\)になるかをリストの2番目に書く。
1976 すると、その部分が変数 YaTeX-file-processor-alist で定義された
1977 処理プログラムに渡される。というわけ。
1978 ん〜やっぱりむずかしいね。分からない時は隣の Lisper に聞くか、
1979 fj野鳥の会で聞こう!
1980 ")
1982 (defvar YaTeX-processed-file-regexp-alist-default
1983 '(("\\\\epsfile\\(\\[[^]]+\\]\\)?{[^},]*file=\\(\\([^,} ]*/\\)?[^,}. ]+\\)\\(\\.e?ps\\)?[^}]*}" 2)
1984 ("\\\\epsfig{[^},]*fi\\(le\\|gure\\)=\\(\\([^,} ]*/\\)?[^,}. ]+\\)\\(\\.e?ps\\)?[^}]*}" 2)
1985 ("\\\\postscriptbox{[^}]*}{[^}]*}{\\(\\([^,} ]*/\\)?[^}. ]+\\)\\(\\.e?ps\\)?}" 1)
1986 ("\\\\\\(epsfbox\\|epsfig\\)\\*?{\\(\\([^,} ]*/\\)?[^}. ]+\\)\\(\\.e?ps\\)?}" 2) ;\epsfbox{hoge.ps}
1987 ("\\\\includegraphics\\*?\\(.*\\]\\|\\s \\)?{\\(.*\\)\\(\\.ai\\|\\.pdf\\|\\.svg\\|\\.png\\|\\.jpe?g\\|\\.e?ps\\)}" 2) ;\includegraphics[options...]{hoge.eps}
1988 ("\\\\\\(psbox\\)\\(\\[[^]]+\\]\\)?{\\(\\([^,} ]*/\\)?[^} ]+\\)\\(\\.e?ps\\)}" 3) ;\psbox[options...]{hoge.eps} (97/1/11)
1989 ("\\\\input{\\([^} ]+\\)\\(\\.tps\\)}" 1) ;tgif2tex (1998/9/16)
1991 "See the documentation of YaTeX-processed-file-regexp-alist.")
1993 (defvar YaTeX-file-processor-alist nil
1994 "*Alist of files' processor vs. its extension;
1995 See also the documentation of YaTeX-processed-file-regexp-alist.")
1997 (defvar YaTeX-file-processor-alist-default
1998 (list (cons YaTeX-cmd-tgif ".obj")
1999 (cons YaTeX-cmd-gimp ".xcf")
2000 (cons YaTeX-cmd-gimp ".xcf.gz")
2001 (cons YaTeX-cmd-gimp ".xcf.bz2")
2002 (cons YaTeX-cmd-edit-svg ".svg")
2003 (cons YaTeX-cmd-edit-svg ".svgz")
2004 (cons YaTeX-cmd-edit-ai ".ai")
2005 '("dia" . ".dia")
2006 (cons YaTeX-cmd-ooo ".odg")
2007 (cons YaTeX-cmd-edit-images ".jpeg")
2008 (cons YaTeX-cmd-edit-images ".jpg")
2009 (cons YaTeX-cmd-edit-images ".png")
2010 (cons YaTeX-cmd-edit-ps ".ps")
2011 (cons YaTeX-cmd-edit-ps ".eps")
2012 (cons YaTeX-cmd-edit-pdf ".pdf")
2013 '(t . ".tex")
2014 '(t . ".sty")
2015 '(t . ""))
2016 "See the documentation of YaTeX-file-processor-alist.")
2018 (defun YaTeX-goto-corresponding-file-processor (&optional other)
2019 "Execute corresponding file processor."
2020 (save-excursion
2021 (or (looking-at YaTeX-ec-regexp)
2022 (skip-chars-backward (concat "^" YaTeX-ec) (point-beginning-of-line)))
2023 (let ((list (append YaTeX-processed-file-regexp-alist
2024 YaTeX-processed-file-regexp-alist-default))
2025 (p (point)) flist file
2026 (peol (point-end-of-line))
2027 (basedir
2028 (if YaTeX-search-file-from-top-directory
2029 (save-excursion (YaTeX-visit-main t) default-directory)
2030 ".")))
2031 (setq flist (catch 'found
2032 (while list
2033 (goto-char p)
2034 (if (re-search-forward (car (car list)) peol t)
2035 (progn
2036 (setq file (YaTeX-match-string
2037 (car (cdr (car list)))))
2038 (throw 'found (cdr (car list)))))
2039 (setq list (cdr list)))))
2040 (if flist ;if pattern and file name found
2041 (let*((plist (append YaTeX-file-processor-alist
2042 YaTeX-file-processor-alist-default))
2043 (plist0 plist)
2044 ext cmd src buf (alt (car (cdr flist))))
2045 (if (and (re-search-forward
2046 (concat YaTeX-comment-prefix "\\s *\\(.*\\)$") peol t)
2047 (assoc (setq cmd (YaTeX-match-string 1))
2048 YaTeX-file-processor-alist))
2049 (setq src ;if processor is specified
2050 (concat file
2051 (cdr (assoc cmd YaTeX-file-processor-alist))))
2052 (while plist ;if processor is not specified
2053 (setq ext (cdr (car plist)))
2054 (if (and (string< "" (concat file ext))
2055 (file-exists-p
2056 (expand-file-name (concat file ext) basedir)))
2057 (setq cmd (car (car plist))
2058 src (concat file ext) plist nil))
2059 (setq plist (cdr plist)))
2060 (if (and (null src) alt YaTeX-create-file-prefix-g)
2061 (setq cmd alt
2062 src (concat file (cdr (assoc alt plist0))))))
2063 (if src ;if processor and src file found
2064 (let ((default-directory basedir))
2065 (cond
2066 ((stringp cmd)
2067 (YaTeX-system (concat cmd " " src) cmd)
2068 t)
2069 ((eq t cmd)
2070 (let ((parent buffer-file-name))
2071 (funcall
2072 (cond
2073 (other 'YaTeX-switch-to-buffer-other-window)
2074 ((get-file-buffer src) 'goto-buffer-window)
2075 (t 'YaTeX-switch-to-buffer))
2076 src)
2077 (or (YaTeX-get-builtin "!")
2078 YaTeX-parent-file
2079 (setq YaTeX-parent-file parent))
2080 t))
2081 ((symbolp cmd)
2082 (cond
2083 ((symbol-function cmd)
2084 (funcall cmd src other)))
2085 t)))))))))
2087 (defun YaTeX-on-section-command-p (command)
2088 "Check if point is on the LaTeX command: COMMAND(regexp).
2089 Return nil if point is not on it. Otherwise return the
2090 number of argument position.
2091 Section command name is stored in match-data #1.
2092 Parsing information is stored to plist.
2093 Macros name stored to propname 'command.
2094 Macro's argument number stored to propname 'argc."
2095 (let ((p (point)) md (parg 0) (argc 1) word (grouping 0) (i 0)
2096 (ec+command (concat YaTeX-ec-regexp "\\(" command "\\)")))
2097 (setplist 'YaTeX-on-section-command-p nil)
2098 (while (setq i (string-match "\\\\(" command i))
2099 (setq grouping (1+ grouping) i (+ i 2)))
2100 (save-excursion
2101 (if (looking-at ec+command) nil
2102 (catch 'found ;caught value has no meaning
2103 ;;(1) looking at current position
2104 (and (looking-at command)
2105 (save-excursion
2106 (while (and (not (bobp)) (looking-at command))
2107 (forward-char -1))
2108 (looking-at ec+command))
2109 (goto-char (match-beginning 0))
2110 (throw 'found t))
2111 ;;If inside of parentheses, try to escape.
2112 (unwind-protect
2113 (progn
2114 (set-syntax-table YaTeX-mode-syntax-table-nonparen)
2115 (while (and (not (= (preceding-char) ?\])) ;skip optional arg
2116 (condition-case err
2117 (progn (up-list -1) t)
2118 (error nil)))))
2119 (set-syntax-table YaTeX-mode-syntax-table))
2120 (while (equal (preceding-char) ?\]) (backward-list))
2121 ;;(2) search command directly
2122 (skip-chars-forward "^{}[]")
2123 (and (YaTeX-re-search-active-backward
2124 ec+command
2125 YaTeX-comment-prefix nil t)
2126 (>= p (match-beginning 0))
2127 (throw 'found (goto-char (match-beginning 0))))
2128 ;;(3) search token
2129 (goto-char p)
2130 (while t
2131 (if (bobp) (throw 'found nil))
2132 (cond
2133 ((looking-at YaTeX-ec-regexp) (throw 'found t))
2134 ((looking-at "[[{]") nil)
2135 ((looking-at "[]}]")(condition-case nil (up-list -1) (error nil)))
2136 (t (skip-chars-backward " \t\r\n")))
2137 (skip-chars-backward (concat "^ \t\r\n{}[]" YaTeX-ec-regexp))
2138 (or (bobp) (forward-char -1)))))
2139 (if (and
2140 (looking-at (concat ec+command
2141 "\\(\\(\\[[^]]+\\]\\|([0-9,]+)\\)*\\)" ;optional arg
2142 ;"[ \t\n\r]*{[^}]+}")) ;arg braces
2143 "[ \t\n\r]*{[^}]*}")) ;arg braces
2144 (not (YaTeX-lookup-table
2145 (setq word (YaTeX-match-string 1)) 'singlecmd)))
2146 (progn
2147 (setq md (match-data))
2148 (skip-chars-forward "^{")
2149 (if (<= (point) p) (setq parg (1+ parg)))
2150 (setq argc
2151 (or (car (cdr (YaTeX-lookup-table word 'section)))
2152 argc))
2153 (put 'YaTeX-on-section-command-p 'argc argc)
2154 (put 'YaTeX-on-section-command-p 'command argc)
2155 (while (and (>= (setq argc (1- argc)) 0)
2156 (progn (skip-chars-forward " \t\n\r")
2157 (looking-at "{")))
2158 (forward-list 1)
2159 (if (<= (point) p) (setq parg (1+ parg))))
2160 (store-match-data md)
2161 (setq i (+ 2 grouping))
2162 (if (and (match-beginning i)
2163 (>= p (match-beginning i)) (< p (match-end i)))
2164 -1 ;return -1 if point is on optional arg
2165 (if (< p (point)) parg))
2166 )))))
2168 (defun YaTeX-on-maketitle-p ()
2169 "Check if point is on maketitle type commands.
2170 Call this function after YaTeX-on-section-command-p."
2171 (let ((p (point)))
2172 (save-excursion
2173 (or (= (char-after (point)) ?\\ )
2174 (progn
2175 (skip-chars-backward
2176 (concat "^" YaTeX-ec-regexp) (point-beginning-of-line))
2177 (or (bobp) (bolp) (backward-char 1))))
2178 (and (looking-at (concat YaTeX-ec-regexp YaTeX-TeX-token-regexp))
2179 (<= (match-beginning 0) p)
2180 (> (match-end 0) p)))))
2182 (defun YaTeX-on-begin-end-p ()
2183 (save-excursion
2184 (if (and (boundp 'in-leftright-p) in-leftright-p)
2185 ;; Dirty workaround for YaTeX-goto-corresponding-leftright 2003/3/28
2186 (let ((md (match-data))) ; for safety
2187 (if (looking-at YaTeX-ec-regexp)
2188 nil ; stay here
2189 (cond
2190 ((looking-at "\\w") (skip-chars-backward "A-Za-z"))
2191 ((looking-at "\\.()\\[\\]|") (forward-char -1)))
2192 (if (equal (char-after (1- (point)))
2193 (string-to-char YaTeX-ec))
2194 (forward-char -1))))
2195 ;(beginning-of-line)
2196 (if (equal (char-after (point)) ?\\) nil ;stay here
2197 (skip-chars-backward "^\n\\\\")
2198 (or (bolp) (forward-char -1))))
2199 (re-search-forward
2200 ;;"\\\\begin{\\([^}]+\\)}\\|\\\\end{\\([^}]+\\)}"
2201 (concat
2202 (YaTeX-replace-format-args
2203 (regexp-quote YaTeX-struct-begin)
2204 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" "")
2205 "\\|"
2206 (YaTeX-replace-format-args
2207 (regexp-quote YaTeX-struct-end)
2208 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" "")
2209 "\\|\\("
2210 YaTeX-ec-regexp ;;"[][()]\\)"
2211 "[\\]\\[]\\)"
2213 (point-end-of-line) t)))
2215 (defun YaTeX-on-includes-p ()
2216 (save-excursion
2217 (beginning-of-line)
2218 (re-search-forward "\\(\\(include[^}]*\\)\\|\\(input\\)\\){[^}]*}"
2219 (point-end-of-line) t)))
2221 (defun YaTeX-on-comment-p (&optional sw)
2222 "Return t if current line is commented out.
2223 Optional argument SW t to treat all `%' lines as comment,
2224 even if on `%#' notation."
2225 (save-excursion
2226 (beginning-of-line)
2227 (skip-chars-forward "\\s ")
2228 (looking-at (if sw "%" "%[^#]"))))
2230 (defun YaTeX-on-BEGIN-END-p ()
2231 (save-excursion
2232 (let ((case-fold-search nil))
2233 (beginning-of-line)
2234 (re-search-forward
2235 "\\(%#BEGIN\\)\\|\\(%#END\\)" (point-end-of-line) t))))
2237 (defun YaTeX-goto-corresponding-* (arg)
2238 "Parse current line and call suitable function."
2239 (interactive "P")
2240 (let (mm)
2241 (cond
2242 ((YaTeX-goto-corresponding-label arg))
2243 ((YaTeX-goto-corresponding-environment))
2244 ((YaTeX-goto-corresponding-file-processor arg))
2245 ((YaTeX-goto-corresponding-file arg))
2246 ((YaTeX-goto-corresponding-BEGIN-END))
2247 ((and (setq mm (YaTeX-in-math-mode-p))
2248 (YaTeX-goto-corresponding-leftright)))
2249 ((and ;;mm YaTeX-use-AMS-LaTeX
2250 (YaTeX-goto-corresponding-paren)))
2251 ;;((and (string-match
2252 ;; YaTeX-equation-env-regexp ;to delay loading
2253 ;; (or (YaTeX-inner-environment t) "document"))
2254 ;; (YaTeX-goto-corresponding-leftright)))
2255 ((YaTeX-goto-corresponding-viewer))
2256 (t (message "I don't know where to go.")))))
2258 (defun YaTeX-goto-corresponding-*-other-window (arg)
2259 "Parse current line and call suitable function."
2260 (interactive "P")
2261 (cond
2262 ((YaTeX-goto-corresponding-label arg t))
2263 ;;((YaTeX-goto-corresponding-environment))
2264 ((YaTeX-goto-corresponding-file t))
2265 ;;((YaTeX-goto-corresponding-BEGIN-END))
2266 (t (message "I don't know where to go."))))
2268 (defun YaTeX-comment-region (alt-prefix)
2269 "Comment out region by '%'.
2270 If you call this function on the 'begin{}' or 'end{}' line,
2271 it comments out whole environment"
2272 (interactive "P")
2273 (if (not (YaTeX-on-begin-end-p))
2274 (YaTeX-comment-region-sub
2275 (if alt-prefix
2276 (read-string-with-history "Insert prefix: ")
2277 YaTeX-comment-prefix))
2278 (YaTeX-comment-uncomment-env 'YaTeX-comment-region-sub)))
2280 (defun YaTeX-uncomment-region (alt-prefix)
2281 "Uncomment out region by '%'."
2282 (interactive "P")
2283 (if (not (YaTeX-on-begin-end-p))
2284 (YaTeX-uncomment-region-sub
2285 (if alt-prefix (read-string-with-history "Remove prefix: ")
2286 YaTeX-comment-prefix)
2287 (region-beginning) (region-end) YaTeX-uncomment-once)
2288 (YaTeX-comment-uncomment-env 'YaTeX-uncomment-region-sub)))
2290 (defun YaTeX-comment-uncomment-env (func)
2291 "Comment or uncomment out one LaTeX environment switching function by FUNC."
2292 (let (beg beg2 (p (point)))
2293 (save-excursion
2294 (beginning-of-line)
2295 (setq beg (point))
2296 (save-match-data
2297 (while (and (not (eobp))
2298 (not (eolp))
2299 (looking-at YaTeX-comment-prefix))
2300 (goto-char (match-end 0))))
2301 (setq beg2 (point))
2302 (YaTeX-goto-corresponding-environment)
2303 (beginning-of-line)
2304 (if (> p (point)) (setq beg (1+ beg2)) (forward-char 1))
2305 (funcall func YaTeX-comment-prefix beg (point) YaTeX-uncomment-once)))
2306 (message "%sommented out current environment."
2307 (if (string-match "uncom" (symbol-name func)) "Un-c" "C")))
2309 (defun YaTeX-comment-paragraph ()
2310 "Comment out current paragraph."
2311 (interactive)
2312 (save-excursion
2313 (cond
2314 ((YaTeX-on-begin-end-p)
2315 (beginning-of-line)
2316 (insert YaTeX-comment-prefix)
2317 (YaTeX-goto-corresponding-environment)
2318 (beginning-of-line)
2319 (insert YaTeX-comment-prefix))
2320 ((YaTeX-on-comment-p)
2321 (message "Already commented out."))
2322 (t
2323 (mark-paragraph)
2324 (if (looking-at paragraph-separate) (forward-line 1))
2325 (YaTeX-comment-region-sub "%")))))
2327 (defun YaTeX-uncomment-paragraph ()
2328 "Uncomment current paragraph."
2329 (interactive)
2330 (save-excursion
2331 (if (YaTeX-on-begin-end-p)
2332 (let ((p (point-marker)))
2333 (YaTeX-goto-corresponding-environment)
2334 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
2335 (goto-char p)
2336 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
2337 (set-marker p nil))
2338 (if (YaTeX-on-comment-p)
2339 (let*((fill-prefix "")
2340 ;;append `^%' to head of paragraph delimiter.
2341 (paragraph-start
2342 (concat
2343 "^$\\|^%\\(" YaTeX-paragraph-separate "\\)"))
2344 (paragraph-separate paragraph-start))
2345 (mark-paragraph)
2346 (if (not (bobp)) (forward-line 1))
2347 (YaTeX-uncomment-region-sub "%" nil nil YaTeX-uncomment-once))
2348 (message "This line is not a comment line.")))))
2350 (defun YaTeX-remove-prefix (prefix &optional once)
2351 "Remove prefix on current line as far as prefix detected. But
2352 optional argument ONCE makes deletion once."
2353 (interactive "sPrefix:")
2354 (beginning-of-line)
2355 (while (re-search-forward (concat "^" prefix) (point-end-of-line) t)
2356 (replace-match "")
2357 (if once (end-of-line))))
2359 (defun YaTeX-kill-some-pairs (predicate gofunc kill-contents)
2360 "Kill some matching pair.
2361 This function assumes that pairs occupy whole of each line where they resid."
2362 (if (not (funcall predicate)) nil
2363 (let ((b1 (match-beginning 0)) (e1 (match-end 0))
2364 b2 e2)
2365 (save-excursion
2366 (funcall gofunc)
2367 (funcall predicate) ;get match data
2368 (if (< (point) e1) ;if currently on begin-line
2369 (progn
2370 (setq b2 b1 e2 e1
2371 b1 (match-beginning 0) e1 (match-end 0))
2372 (goto-char e2)) ;goto end-line's end
2373 (setq b2 (match-beginning 0)
2374 e2 (match-end 0))
2375 (goto-char e2)) ;now e2 has surely end-line's end
2376 (skip-chars-forward " \t")
2377 (and (eolp)
2378 (not (eobp))
2379 (setq e2 (1+ (point))))
2380 (if (not kill-contents)
2381 (kill-region
2382 (progn
2383 (goto-char b2)
2384 (skip-chars-backward " \t%")
2385 (if (bolp) (point) b2))
2386 e2))
2387 (goto-char b1)
2388 (skip-chars-backward " \t%")
2389 (if (not kill-contents)
2390 (progn
2391 (kill-append
2392 (buffer-substring
2393 (setq b1 (if (bolp) (point) b1))
2394 (setq e1
2395 (progn
2396 (goto-char e1)
2397 (while (looking-at "{\\| \t")
2398 (forward-list 1))
2399 (skip-chars-forward " \t")
2400 (if (and (eolp) (not (eobp)))
2401 (1+ (point))
2402 (point)))))
2403 t)
2404 (delete-region b1 e1))
2405 (kill-region
2406 (if (bolp) (point) b1)
2407 e2)))
2408 t)))
2410 (defun YaTeX-kill-section-command (point kill-all)
2411 "Kill section-type command at POINT leaving its last argument.
2412 Non-nil for the second argument kill its last argument too."
2413 (let ((cmd (get 'YaTeX-on-section-command-p 'command))
2414 (argc (get 'YaTeX-on-section-command-p 'argc))
2415 beg (end (make-marker)))
2416 (save-excursion
2417 (goto-char point)
2418 (or (looking-at YaTeX-ec-regexp)
2419 (progn
2420 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
2421 (forward-char -1)))
2422 (setq beg (point))
2423 (skip-chars-forward "^{")
2424 (while (> (setq argc (1- argc)) 0)
2425 (skip-chars-forward "^{")
2426 (forward-list 1))
2427 (kill-region beg (point))
2428 (forward-list 1)
2429 (set-marker end (point))
2430 (if kill-all
2431 (progn
2432 (kill-append (buffer-substring beg end) nil)
2433 (delete-region beg end))
2434 (goto-char beg)
2435 (kill-append
2436 (buffer-substring
2437 (point) (progn (skip-chars-forward "^{" end) (1+ (point))))
2438 nil)
2439 (delete-region beg (1+ (point)))
2440 (goto-char end)
2441 (set-marker end nil)
2442 (kill-append (buffer-substring (point) (1- (point))) nil)
2443 (delete-backward-char 1)))))
2445 (defun YaTeX-kill-paren (kill-contents)
2446 "Kill parentheses leaving its contents.
2447 But kill its contents if the argument KILL-CONTENTS is non-nil."
2448 (interactive "P")
2449 (let (p bsl (backslash-syntax (char-to-string (char-syntax ?\\)))
2450 (md (match-data)))
2451 (unwind-protect
2452 (save-excursion
2453 (modify-syntax-entry ?\\ " ")
2454 (if (looking-at "\\s(\\|\\(\\s)\\)")
2455 (progn
2456 (if (match-beginning 1)
2457 (up-list -1))
2458 (if (and (> (point) (point-min))
2459 (= (char-after (1- (point))) ?\\ ))
2460 (setq p (1- (point)) bsl t)
2461 (setq p (point)))
2462 (forward-list 1)
2463 ;(YaTeX-goto-open-paren t)
2464 (if kill-contents (delete-region p (point))
2465 (backward-delete-char 1)
2466 (cond
2467 ((save-excursion
2468 (forward-char -2)
2469 (looking-at (concat YaTeX-ec-regexp "/")))
2470 (backward-delete-char 2))
2471 ((= (char-after (1- (point))) ?\\)
2472 (backward-delete-char 1)))
2473 (goto-char p)
2474 (if (looking-at
2475 (concat "{" YaTeX-ec-regexp
2476 YaTeX-command-token-regexp "+"
2477 "\\s +"))
2478 (delete-region (point) (match-end 0))
2479 (delete-char 1)
2480 (if bsl (delete-char 1))))
2481 t)))
2482 (modify-syntax-entry ?\\ backslash-syntax)
2483 (store-match-data md))))
2485 (defvar YaTeX-read-environment-history nil "Holds history of environments.")
2486 (put 'YaTeX-read-environment-history 'no-default t)
2487 (defun YaTeX-read-environment (prompt &optional predicate must-match initial)
2488 "Read a LaTeX environment name with completion."
2489 (YaTeX-sync-local-table 'tmp-env-table)
2490 (completing-read-with-history
2491 prompt
2492 (append tmp-env-table user-env-table env-table)
2493 predicate must-match initial
2494 'YaTeX-read-environment-history))
2496 (defvar YaTeX-read-section-history nil "Holds history of section-types.")
2497 (put 'YaTeX-read-section-history 'no-default t)
2498 (defun YaTeX-read-section (prompt &optional predicate initial)
2499 "Read a LaTeX section-type command with completion."
2500 (YaTeX-sync-local-table 'tmp-section-table)
2501 (let ((minibuffer-completion-table
2502 (append tmp-section-table user-section-table section-table)))
2503 (read-from-minibuffer-with-history
2504 prompt initial YaTeX-section-completion-map nil
2505 'YaTeX-read-section-history)))
2507 (defun YaTeX-read-section-with-overview ()
2508 "Read sectioning command with overview.
2509 This function refers a local variable `source-window' in YaTeX-make-section,
2510 because this function is called with no argument."
2511 (interactive)
2512 (require 'yatexsec) ;some case needs this
2513 (if (> (minibuffer-depth) 1)
2514 (error "Too many minibuffer levels for overview."))
2515 (let ((sw (selected-window))
2516 (minibuffer-max-depth nil) ; for XEmacs20
2517 (enable-recursive-minibuffers t) sect)
2518 (unwind-protect
2519 (progn
2520 (select-window source-window)
2521 (setq sect (YaTeX-read-section-in-minibuffer
2522 "Sectioning(Up=C-p, Down=C-n, Help=?): "
2523 YaTeX-sectioning-level (YaTeX-section-overview))))
2524 (select-window sw))
2525 (YaTeX-minibuffer-erase)
2526 (insert sect)
2527 (exit-minibuffer)))
2529 (defvar YaTeX-read-fontsize-history nil "Holds history of font designator.")
2530 (put 'YaTeX-read-fontsize-history 'no-default t)
2531 (defun YaTeX-read-fontsize (prompt &optional predicate must-match initial)
2532 "Read a LaTeX font changing command with completion."
2533 (YaTeX-sync-local-table 'tmp-fontsize-table)
2534 (completing-read-with-history
2535 prompt (append tmp-fontsize-table user-fontsize-table fontsize-table)
2536 predicate must-match initial 'YaTeX-read-fontsize-history))
2538 (defun YaTeX-change-environment ()
2539 "Change the name of environment."
2540 (interactive)
2541 (if (not (YaTeX-on-begin-end-p)) nil
2542 (save-excursion
2543 (let (p env newenv (m1 (match-beginning 1)) (m2 (match-beginning 2)))
2544 (setq env (if m1 (YaTeX-buffer-substring m1 (match-end 1))
2545 (YaTeX-buffer-substring m2 (match-end 2))))
2546 (goto-char (match-beginning 0))
2547 (set-mark-command nil)
2548 (YaTeX-goto-corresponding-environment)
2549 (setq newenv (YaTeX-read-environment
2550 (format "Change environment `%s' to: " env)))
2551 (cond
2552 ((string= newenv "") (message "Change environment cancelled."))
2553 ((string= newenv env) (message "No need to change."))
2554 (t
2555 (search-forward (concat "{" env) (point-end-of-line) t)
2556 (replace-match (concat "{" newenv) t)
2557 (exchange-point-and-mark)
2558 (search-forward (concat "{" env) (point-end-of-line) t)
2559 (replace-match (concat "{" newenv) t)))
2560 t))))
2562 (defun YaTeX-change-section ()
2563 "Change section-type command."
2564 (interactive)
2565 (let*((where (YaTeX-on-section-command-p YaTeX-command-token-regexp))
2566 (p (point)) (cmd (YaTeX-match-string 1))
2567 (beg (make-marker)) (end (make-marker)) old new)
2568 (if (null where) nil
2569 (unwind-protect
2570 (let ((source-window (selected-window)))
2571 (cond
2572 ((equal where 0);;if point is on section command
2573 (set-marker beg (match-beginning 1))
2574 (set-marker end (match-end 1))
2575 (goto-char beg) ;beginning of the command
2576 (setq new (YaTeX-read-section
2577 (format "Change `%s' to: " cmd) nil)
2578 old cmd))
2580 ((= where -1);;if point is on a optional parameter
2581 (set-marker beg (match-beginning 2))
2582 (skip-chars-forward "^{")
2583 (set-marker end (point))
2584 (goto-char p)
2585 (setq new
2586 (if (fboundp (intern-soft (concat YaTeX-addin-prefix cmd)))
2587 (YaTeX-addin cmd)
2588 (concat "["
2589 (read-string
2590 (format "Change `%s' to: "
2591 (setq old (YaTeX-buffer-substring
2592 (1+ beg) (1- end)))))
2593 "]"))))
2595 ((> where 0);;if point is in arguments' braces
2596 (or (looking-at "{")
2597 (progn (skip-chars-backward "^{") (forward-char -1)))
2598 (set-marker beg (1+ (point)))
2599 (forward-list 1)
2600 (forward-char -1)
2601 (set-marker end (point))
2602 (setq old (YaTeX-buffer-substring beg end))
2603 (goto-char p)
2604 (if (> (length old) 40)
2605 (setq old (concat (substring old 0 12) "..."
2606 (substring old -12))))
2607 (setq new
2608 (if (intern-soft (concat "YaTeX::" cmd))
2609 (funcall (intern-soft (concat "YaTeX::" cmd)) where)
2610 (read-string (format "Change `%s' to: " old)))))
2611 ) ;cond
2612 (if (string= old new)
2613 nil ;do not replace
2614 (delete-region beg end)
2615 (goto-char beg)
2616 (insert-before-markers new)))
2617 (set-marker beg nil)
2618 (set-marker end nil))
2619 ;;(goto-char (marker-position p))
2620 new)))
2622 (defun YaTeX-change-fontsize ()
2623 "Change large-type command."
2624 (let ((lt (append tmp-fontsize-table user-fontsize-table fontsize-table))
2625 (p (point)) large old new beg end)
2626 ;;(and (looking-at "}") (up-list -1))
2627 ;;(and (looking-at "{") (forward-char 1))
2628 ;;Is above convenient?
2629 (save-excursion
2630 (or (looking-at YaTeX-ec-regexp)
2631 (progn
2632 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
2633 (forward-char -1)))
2634 (cond
2635 ((and
2636 (looking-at
2637 (concat YaTeX-ec-regexp "\\(" YaTeX-TeX-token-regexp "\\)"))
2638 (< p (match-end 0))
2639 (assoc (setq old (YaTeX-match-string 1)) lt))
2640 (goto-char p)
2641 (setq beg (match-beginning 1) end (match-end 1) ;save match position
2642 new (completing-read
2643 (format "Change font/size `%s' to : " old) lt))
2644 (delete-region beg end)
2645 (goto-char beg)
2646 (insert-before-markers new)
2647 new)
2648 (t nil)
2649 ))))
2651 (defun YaTeX-change-math-image ()
2652 "Change with image completion."
2653 (let (maketitle memberp beg end)
2654 (if (and (YaTeX-on-maketitle-p)
2655 (progn
2656 (setq maketitle (substring (YaTeX-match-string 0) 1))
2657 (setq memberp (YaTeX-math-member-p maketitle))))
2658 (let*((last-command-char (string-to-char (car memberp)))
2659 (last-command-event last-command-char))
2660 (setq beg (match-beginning 0) end (match-end 0))
2661 (delete-region beg end)
2662 (YaTeX-math-insert-sequence t (cdr memberp))))))
2664 (defun YaTeX-kill-* (&optional arg)
2665 "Parse current line and call suitable function.
2666 Non-nil for ARG kills its contents too."
2667 (interactive "P")
2668 (cond
2669 ((YaTeX-kill-some-pairs 'YaTeX-on-begin-end-p
2670 'YaTeX-goto-corresponding-environment arg))
2671 ((YaTeX-kill-some-pairs 'YaTeX-on-BEGIN-END-p
2672 'YaTeX-goto-corresponding-BEGIN-END arg))
2673 ((YaTeX-on-section-command-p YaTeX-command-token-regexp);on any command
2674 (YaTeX-kill-section-command (match-beginning 0) arg))
2675 ((YaTeX-kill-paren arg))
2676 ((and (fboundp 'overlays-at)
2677 (member YaTeX-on-the-fly-overlay (overlays-at (point))))
2678 (YaTeX-on-the-fly-cancel))
2679 (t (message "I don't know what to kill."))))
2681 (defun YaTeX-change-* ()
2682 "Parse current line and call suitable function."
2683 (interactive)
2684 (cond
2685 ((YaTeX-change-parentheses))
2686 ((YaTeX-change-environment))
2687 ((YaTeX-change-section))
2688 ((YaTeX-change-fontsize))
2689 ((YaTeX-change-math-image))
2690 (t (message "I don't know what to change."))))
2692 ;;;
2693 ;Check availability of add-in functions
2694 ;;;
2695 (cond
2696 ((featurep 'yatexadd) nil) ;Already provided.
2697 ((progn (load "yatexadd" t) (featurep 'yatexadd)) nil)
2698 (t (message "YaTeX add-in functions not supplied.")))
2700 (defun YaTeX-addin (name)
2701 "Check availability of addin function and call it if exists."
2702 (if (and (not (get 'YaTeX-generate 'disabled))
2703 (intern-soft (concat YaTeX-addin-prefix name))
2704 (fboundp (intern-soft (concat YaTeX-addin-prefix name))))
2705 (let ((s (funcall (intern (concat YaTeX-addin-prefix name)))))
2706 (if (stringp s) s ""))
2707 "")) ;Add in function is not bound.
2710 (defun YaTeX-on-item-p (&optional point)
2711 "Return t if POINT (default is (point)) is on \\item."
2712 (let ((p (or point (point))))
2713 (save-excursion
2714 (goto-char p)
2715 (end-of-line)
2716 (setq p (point))
2717 (re-search-backward YaTeX-paragraph-delimiter nil t)
2718 (re-search-forward YaTeX-item-regexp p t))))
2720 (defun YaTeX-in-verb-p (&optional point)
2721 "Check if POINT is in verb or verb*. Default of POINT is (point)."
2722 (setq point (or point (point)))
2723 (save-excursion
2724 (let ((md (match-data)))
2725 (goto-char point)
2726 (unwind-protect
2727 (if (not (re-search-backward
2728 (concat YaTeX-ec-regexp
2729 "\\(" YaTeX-verb-regexp "\\)"
2730 "\\([^-A-Za-z_*]\\)")
2731 (point-beginning-of-line) t))
2732 nil
2733 (goto-char (match-end 2))
2734 (skip-chars-forward
2735 (concat "^" (YaTeX-buffer-substring
2736 (match-beginning 2) (match-end 2))))
2737 (and (< (match-beginning 2) point) (< (1- point) (point))))
2738 (store-match-data md)))))
2740 (defun YaTeX-literal-p (&optional point)
2741 "Check if POINT is in verb or verb* or verbatime environment family.
2742 Default of POINT is (point)."
2743 (let ((md (match-data)))
2744 (unwind-protect
2745 (cond
2746 ((equal YaTeX-ec "\\") ;maybe LaTeX
2747 (save-excursion
2748 (and point (goto-char point))
2749 (or (YaTeX-in-verb-p (point))
2750 (and (not (looking-at "\\\\end{verb"))
2751 (YaTeX-quick-in-environment-p
2752 YaTeX-verbatim-environments))))))
2753 (store-match-data md))))
2755 ;; Filling \item
2756 (defun YaTeX-remove-trailing-comment (start end)
2757 "Remove trailing comment from START to end."
2758 (save-excursion
2759 (let ((trcom (concat YaTeX-comment-prefix "$")))
2760 (goto-char start)
2761 (while (re-search-forward trcom end t)
2762 (if (/= (char-after (1- (match-beginning 0))) ?\\ )
2763 (replace-match "\\1"))))))
2765 (defvar YaTeX-itemize-withlabel-max-indent-depth 8)
2766 (defun YaTeX-get-item-info (&optional recent thisenv)
2767 "Return the list of the beginning of \\item and column of its item.
2768 If it seems to be outside of itemizing environment, just return nil.
2769 Non-nil for optional argument RECENT refers recent \\item.
2770 Optional second argument THISENV omits calling YaTeX-inner-environment."
2771 (save-excursion
2772 (let* ((p (point)) env e0 c cc md
2773 (bndry (and (setq env (or thisenv (YaTeX-inner-environment t)))
2774 (get 'YaTeX-inner-environment 'point))))
2775 (end-of-line)
2776 (if (if recent
2777 (catch 'found
2778 (while (YaTeX-re-search-active-backward
2779 YaTeX-item-regexp YaTeX-comment-prefix bndry t)
2780 (setq md (match-data))
2781 (YaTeX-inner-environment t)
2782 (store-match-data md)
2783 (if (= bndry (get 'YaTeX-inner-environment 'point))
2784 (throw 'found t))))
2785 (goto-char bndry)
2786 (YaTeX-re-search-active-forward
2787 YaTeX-item-regexp YaTeX-comment-prefix p t))
2788 (progn
2789 (goto-char (match-end 0))
2790 ;(setq c (current-column))
2791 (if (string-match "desc" env)
2792 (setq c 6)
2793 (setq cc (current-column))
2794 (if (equal (following-char) ?\[) (forward-list 1))
2795 (if (< (- (current-column) cc)
2796 YaTeX-itemize-withlabel-max-indent-depth)
2797 (setq c 0)
2798 (move-to-column cc)
2799 (setq c YaTeX-itemize-withlabel-max-indent-depth)))
2800 (skip-chars-forward " \t" (point-end-of-line))
2801 (list (point-beginning-of-line) (+ c (current-column))))))))
2803 (defun YaTeX-fill-item ()
2804 "Fill item in itemize environment."
2805 (interactive)
2806 (save-excursion
2807 (let* ((p (point))
2808 (item-term (concat
2809 "\\(^[ \t]*$\\)\\|" YaTeX-item-regexp "\\|\\("
2810 YaTeX-ec-regexp "\\(begin\\|end\\)\\)"))
2811 ;;This value depends on LaTeX.
2812 fill-prefix start col
2813 (info (YaTeX-get-item-info t)))
2814 (if (null info) nil ;not on \item, do nothing
2815 (setq start (car info)
2816 col (car (cdr info)))
2817 (save-excursion
2818 (if (re-search-backward "^\\s *$" start t)
2819 ;;if separated from \item line, isolate this block
2820 (progn
2821 (setq start (1+ (match-end 0)))
2822 (goto-char start)
2823 (skip-chars-forward " \t")
2824 (delete-region (point) start) ;is this your favor???
2825 (indent-to col))))
2826 (beginning-of-line)
2827 (if (<= (save-excursion
2828 (re-search-forward
2829 (concat "\\\\end{\\|\\\\begin{\\|^[ \t]*$") nil t)
2830 (match-beginning 0))
2831 p)
2832 (progn (message "Not on itemize.") nil)
2833 (end-of-line)
2834 (newline)
2835 (indent-to col)
2836 (setq fill-prefix
2837 (YaTeX-buffer-substring (point-beginning-of-line)(point)))
2838 (beginning-of-line)
2839 (delete-region (point) (progn (forward-line 1) (point)))
2840 (re-search-forward item-term nil 1)
2841 (YaTeX-remove-trailing-comment start (point))
2842 (beginning-of-line)
2843 (push-mark (point) t)
2844 (goto-char start)
2845 (forward-line 1)
2846 (while (< (point) (mark))
2847 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
2848 (forward-line 1))
2849 (fill-region-as-paragraph start (mark))
2850 (if NTT-jTeX
2851 (while (progn(forward-line -1)(end-of-line) (> (point) start))
2852 (insert ?%)))
2853 (pop-mark))))))
2855 (defun YaTeX-fill-paragraph (arg)
2856 "YaTeX adjustment function for fill-paragraph.
2857 *Protect \\verb from unexpected broken up."
2858 (interactive "P")
2859 (cond
2860 ((not (eq major-mode 'yatex-mode)) (fill-paragraph arg))
2861 ((YaTeX-quick-in-environment-p YaTeX-fill-inhibit-environments) nil)
2862 ((YaTeX-in-math-mode-p) nil)
2863 (t
2864 (save-excursion
2865 (let*((verbrex (concat YaTeX-ec-regexp
2866 "\\(" YaTeX-verb-regexp "\\)" ;match#1
2867 "\\(.\\).*\\(\\2\\)")) ;match #2 and #3
2868 (tilderex (concat "\\("
2869 YaTeX-kanji-regexp "~"
2870 "\\)" YaTeX-ec-regexp
2871 "\\|\\("
2872 "~" YaTeX-kanji-regexp
2873 "\\)"))
2874 (p (point)) ii end poslist spacelist lenlist b e n
2875 (fill-prefix fill-prefix)
2876 (inenv (or (YaTeX-inner-environment t) "document"))
2877 (border (get 'YaTeX-inner-environment 'point)))
2878 (cond
2879 ((save-excursion (beginning-of-line) ;if point is on the first
2880 (setq end (point)) ;non-whitespace char
2881 (skip-chars-forward " \t")
2882 (equal (point) p))
2883 (setq fill-prefix (YaTeX-buffer-substring p end)))
2884 ((and ;;(not YaTeX-emacs-19)
2885 (string-match YaTeX-itemizing-env-regexp inenv)
2886 (setq ii (YaTeX-get-item-info)))
2887 (save-excursion
2888 (beginning-of-line)
2889 (indent-to-column (car (cdr ii)))
2890 (setq fill-prefix
2891 (YaTeX-buffer-substring (point) (point-beginning-of-line)))
2892 (delete-region (point) (progn (beginning-of-line) (point))))))
2893 (cond
2894 ((string-match "tabular" inenv)
2895 (let ((b (point-beginning-of-line))
2896 (e (point-end-of-line)))
2897 (if (re-search-backward
2898 "&\\|\\\\\\\\\\|\\\\\\(begin\\|end\\){" border t)
2899 (setq b (if (match-beginning 1)
2900 (progn (forward-line 1) (point))
2901 (point-beginning-of-line))))
2902 (goto-char p)
2903 (if (re-search-forward
2904 "&\\|\\\\\\\\\\|\\\\\\(end\\|begin\\){" nil t)
2905 (setq e (if (match-beginning 1)
2906 (progn (forward-line -1)
2907 (point-end-of-line))
2908 (match-beginning 0))))
2909 (set-mark e)
2910 (goto-char b)))
2911 (t
2912 (mark-paragraph)))
2913 (save-restriction
2914 (narrow-to-region (region-beginning) (region-end))
2915 (YaTeX-remove-trailing-comment (point-min) (point-max))
2916 ;; First, replace spaces in verb to _ temporarily.
2917 (goto-char (point-min))
2918 (while (YaTeX-re-search-active-forward
2919 verbrex YaTeX-comment-prefix (point-max) t)
2920 (setq end (match-beginning 3))
2921 (goto-char (match-beginning 2))
2922 (while (re-search-forward "\\s " end t)
2923 (setq poslist (cons (make-marker) poslist)
2924 spacelist (cons (preceding-char) spacelist)
2925 lenlist (cons 1 lenlist))
2926 (replace-match "_")
2927 (set-marker (car poslist) (match-beginning 0))))
2928 ;; Second, replace "表~\ref{...}" to "\\\ref{...}"
2929 (goto-char (point-min))
2930 (while (YaTeX-re-search-active-forward
2931 tilderex YaTeX-comment-prefix (point-max) t)
2932 (if (match-beginning 1)
2933 (setq b (match-beginning 1) e (match-end 1) n 1)
2934 (setq b (match-beginning 2) e (match-end 2) n 2))
2935 (setq poslist (cons (make-marker) poslist)
2936 spacelist (cons (YaTeX-match-string n) spacelist)
2937 lenlist (cons 2 lenlist))
2938 (goto-char (match-beginning 0))
2939 (delete-region (point) e)
2940 (insert YaTeX-ec YaTeX-ec) ;set-marker should be here
2941 (set-marker (car poslist) b))
2942 ;;(fill-paragraph arg)
2943 (fill-region-as-paragraph (point-min) (point-max) arg)
2944 (while spacelist
2945 (goto-char (car poslist))
2946 (set-marker (car poslist) nil)
2947 (and (eolp) (skip-chars-forward "\n\t "))
2948 (delete-char (car lenlist))
2949 (insert (car spacelist))
2950 (setq spacelist (cdr spacelist)
2951 poslist (cdr poslist)
2952 lenlist (cdr lenlist)))
2953 (goto-char (point-min))
2954 (forward-word 1)
2955 (beginning-of-line)
2956 (while (re-search-forward "\\\\\\([a-z]*ref\\|cite\\){" nil t)
2957 (if (< (point-end-of-line)
2958 (save-excursion (forward-char -1) (forward-list 1) (point)))
2959 (progn (end-of-line)
2960 (if (save-excursion
2961 (backward-word 1)
2962 (looking-at "[^0-9A-z!-)]"))
2963 (insert YaTeX-comment-prefix)))))
2964 ;; Nonbreak space `~'
2965 (goto-char (point-min))
2966 (while (YaTeX-re-search-active-forward
2967 "~\\(\\s *\\)$" YaTeX-comment-prefix (point-max) t)
2968 (delete-region (match-beginning 1) (match-end 1))
2969 (insert YaTeX-comment-prefix))
2970 (goto-char (point-min))
2971 (if (and NTT-jTeX (looking-at "[ \t]\\|^$"))
2972 (progn
2973 (goto-char (point-min))
2974 (while (not (eobp))
2975 (end-of-line)
2976 (or (bolp)
2977 (save-excursion
2978 (backward-word 1)
2979 (looking-at "[0-9A-z!-)]")) ;is not japanese string
2980 (progn (setq p (point)) (insert YaTeX-comment-prefix)))
2981 (forward-line 1))
2982 (goto-char p)
2983 (if (looking-at "%") (delete-char 1)) ;remove last inserted `%'
2984 ))))))))
2986 (if (fboundp 'YaTeX-saved-indent-new-comment-line) nil
2987 (fset 'YaTeX-saved-indent-new-comment-line
2988 (symbol-function 'indent-new-comment-line))
2989 (fset 'indent-new-comment-line 'YaTeX-indent-new-comment-line))
2991 (defun YaTeX-indent-new-comment-line (&optional soft)
2992 "Tuned `indent-new-comment-line' function for yatex.
2993 See the documentation of `YaTeX-saved-indent-new-comment-line'."
2994 (interactive)
2995 (cond
2996 ((or (not (memq major-mode '(yatex-mode yahtml-mode)))
2997 (string-match
2998 "document"
2999 (or (and (boundp 'inenv) inenv)
3000 (or (YaTeX-inner-environment t) "document"))))
3001 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft))))
3002 ; ((and (eq major-mode 'yahtml-mode)
3003 ; (string-match
3004 ; "^[Pp][Rr][Ee]" (yahtml-inner-environment-but "^[Aa]\\b" t)))
3005 ; (yahtml-indent-new-commnet-line))
3006 ((and (eq major-mode 'yatex-mode) ;1997/2/4
3007 (YaTeX-in-math-mode-p)) nil) ;1996/12/30
3008 (t (let (fill-prefix)
3009 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft)))))))
3011 (defun YaTeX-fill-* ()
3012 "Fill paragraph according to its condition."
3013 (interactive)
3014 (cond
3015 ((YaTeX-fill-item))
3016 ))
3018 ;; Accent completion
3019 (defun YaTeX-read-accent-char (x)
3020 "Read char in accent braces."
3021 (let ((c (read-char)))
3022 (concat
3023 (if (and (or (= c ?i) (= c ?j))
3024 (not (string-match (regexp-quote x) "cdb")))
3025 "\\" "")
3026 (char-to-string c))))
3028 (defun YaTeX-make-accent ()
3029 "Make accent usage."
3030 (interactive)
3031 (message "1:` 2:' 3:^ 4:\" 5:~ 6:= 7:. u v H t c d b")
3032 (let ((c (read-char))(case-fold-search nil))
3033 (setq c (cond ((and (> c ?0) (< c ?8))
3034 (substring "`'^\"~=." (1- (- c ?0)) (- c ?0)))
3035 ((= c ?h) "H")
3036 (t (char-to-string c))))
3037 (if (not (string-match c "`'^\"~=.uvHtcdb")) nil
3038 (insert "\\" c "{}")
3039 (backward-char 1)
3040 (insert (YaTeX-read-accent-char c))
3041 (if (string= c "t") (insert (YaTeX-read-accent-char c)))
3042 (forward-char 1))))
3044 ;; Field skip in tabular
3045 (defun YaTeX-forward-field (arg)
3046 "Move forward to the ARGth next column field of table."
3047 (interactive "p")
3048 (if (< arg 0)
3049 (YaTeX-backward-field (- arg))
3050 (let ((ep (save-excursion (YaTeX-end-of-environment) (point)))
3051 (wc (car (YaTeX-array-what-column-internal))))
3052 (while (>= (setq arg (1- arg)) 0)
3053 (skip-chars-forward "^&\\\\")
3054 (while (and (not (eobp))
3055 (> ep (point))
3056 (looking-at "\\&\\|\\\\")
3057 (= wc (car (YaTeX-array-what-column-internal))))
3058 (skip-chars-forward "&" ep)
3059 (while (looking-at "[\n\t ]+\\|\\\\\\\\\\|\\\\.line\\>")
3060 (goto-char (match-end 0))
3061 ))))))
3063 (defun YaTeX-backward-field (arg)
3064 "Move backward to the ARGth next column field of table."
3065 (interactive "p")
3066 (if (< arg 0)
3067 (YaTeX-forward-field (- arg))
3068 (let ((bp (save-excursion
3069 (YaTeX-beginning-of-environment)
3070 (point-end-of-line)))
3071 (wc (car (YaTeX-array-what-column-internal))))
3072 (while (>= (setq arg (1- arg)) 0)
3073 (skip-chars-backward "^&\\\\" bp)
3074 (while (and (not (bobp))
3075 (< bp (point))
3076 (memq (preceding-char) '(?& ?\\))
3077 (= wc (car (YaTeX-array-what-column-internal))))
3078 (skip-chars-backward "&\\\\" bp)
3079 (skip-chars-backward "\n\t " bp))
3080 (if (eolp) (skip-chars-forward "^&\\\\"))))))
3082 ;; Indentation
3083 (defun YaTeX-current-indentation ()
3084 "Return the indentation of current environment."
3085 (save-excursion
3086 ;;(beginning-of-line)
3087 (if (YaTeX-beginning-of-environment t)
3088 (goto-char (get 'YaTeX-inner-environment 'point))
3089 (forward-line -1)
3090 (beginning-of-line)
3091 (skip-chars-forward " \t"))
3092 (current-column)))
3094 (defun YaTeX-previous-line-indentation ()
3095 (save-excursion
3096 (forward-line -1)
3097 (skip-chars-forward " \t")
3098 (current-column)))
3100 (defvar YaTeX-noindent-env-regexp "verbatim\\*?\\|alltt"
3101 "*Regexp of environment names that should begin with no indentation.
3102 All verbatime-like environment name should match with.")
3103 (defun YaTeX-indent-line ()
3104 "Indent corrent line referrin current environment."
3105 (interactive)
3106 (let ((indent-relative
3107 (function
3108 (lambda (&optional additional)
3109 (YaTeX-reindent
3110 (+ (YaTeX-current-indentation)
3111 (or additional 0)
3112 YaTeX-environment-indent)))))
3113 sect depth iteminfo (p (point)) pp (peol (point-end-of-line)) begend
3114 ;;inenv below is sometimes defined in YaTeX-indent-new-comment-line
3115 (inenv (or (and (boundp 'inenv) inenv) (YaTeX-inner-environment t))))
3116 ;;(if NTT-jTeX ;;Do you need this section?
3117 ;; (save-excursion
3118 ;; (end-of-line)
3119 ;; (let ((p (point)))
3120 ;; (forward-line -1)
3121 ;; (end-of-line)
3122 ;; (or (= p (point))
3123 ;; (progn (backward-char (length YaTeX-comment-prefix))
3124 ;; (not (looking-at (regexp-quote YaTeX-comment-prefix))))
3125 ;; (progn
3126 ;; (skip-chars-backward YaTeX-comment-prefix)
3127 ;; (kill-line))))))
3128 (or inenv (setq inenv "document")) ;is the default environment
3129 (cond
3130 ((and
3131 (prog1 (YaTeX-on-begin-end-p)
3132 (setq begend (match-beginning 0)))
3133 (or (match-beginning 2) ;if \end
3134 (and (match-beginning 3) ;if \) \]
3135 (= (char-syntax (char-after (1+ (match-beginning 3)))) ?\)))))
3136 (YaTeX-reindent
3137 (save-excursion
3138 (YaTeX-goto-corresponding-environment)
3139 (current-column))))
3140 ;; on the begining of verbatime line, remove all indentation
3141 ((and begend ;; match-beginning 0 of \begin
3142 YaTeX-noindent-env-regexp
3143 (stringp YaTeX-noindent-env-regexp)
3144 (save-excursion
3145 (and ;; if the \begin is the first declaration of this line
3146 (progn (beginning-of-line) (skip-chars-forward " \t")
3147 (= begend (point)))
3148 (progn
3149 (goto-char begend)
3150 (looking-at
3151 (concat YaTeX-ec-regexp
3152 "begin{\\(" YaTeX-noindent-env-regexp "\\)}"))))))
3153 (save-excursion
3154 (goto-char begend)
3155 (delete-region (point) (point-beginning-of-line))))
3156 ((string-match YaTeX-equation-env-regexp inenv)
3157 (YaTeX-indent-line-equation)) ;autoload-ed from yatexenv
3158 (;(YaTeX-in-environment-p '("itemize" "enumerate" "description" "list"))
3159 (string-match YaTeX-itemizing-env-regexp inenv)
3160 ;;(YaTeX-on-item-p) ??
3161 ;;(setq iteminfo (YaTeX-get-item-info t))
3162 (if (save-excursion
3163 (beginning-of-line)
3164 (re-search-forward YaTeX-item-regexp peol t))
3165 (progn
3166 (save-excursion
3167 (goto-char (1+ (match-beginning 0)))
3168 (setq depth
3169 (* YaTeX-environment-indent
3170 (cond
3171 ((looking-at "subsubsub") 3)
3172 ((looking-at "subsub") 2)
3173 ((looking-at "sub") 1)
3174 (t 0)))))
3175 (funcall indent-relative depth))
3176 (YaTeX-reindent (or (car (cdr (YaTeX-get-item-info t inenv)))
3177 (+ (save-excursion
3178 (beginning-of-line)
3179 (YaTeX-current-indentation))
3180 YaTeX-environment-indent))))
3182 ((YaTeX-literal-p) ;verbatims
3183 (tab-to-tab-stop))
3184 ((string-match "\\(tabular\\|array\\)" inenv) ;1.73
3185 (let ((n 1) (cc (current-column)) (p (point)))
3186 (condition-case err
3187 (save-excursion
3188 (beginning-of-line)
3189 (skip-chars-forward "[ \t]")
3190 ;;(if (looking-at "&") (forward-char 1))
3191 (require 'yatexenv)
3192 (setq n (car (YaTeX-array-what-column-internal))))
3193 (error nil))
3194 (YaTeX-reindent
3195 (+ (YaTeX-current-indentation)
3196 YaTeX-environment-indent
3197 (* (1- n) YaTeX-tabular-indentation)))
3198 (and (= cc (current-column))
3199 (= p (point))
3200 (equal last-command 'YaTeX-indent-line)
3201 ;; if NO indent action occured, move to the next column
3202 (YaTeX-forward-field 1))))
3203 ((and inenv (not (equal "document" inenv)))
3204 (funcall indent-relative))
3205 ((YaTeX-on-section-command-p YaTeX-sectioning-regexp)
3206 (require 'yatexsec) ;to know YaTeX-sectioning-level
3207 (setq sect (YaTeX-match-string 1))
3208 (if (string-match "\\*$" sect)
3209 (setq sect (substring sect 0 -1)))
3210 (YaTeX-reindent
3211 (* (max
3212 (1- ;I want chapter to have indentation 0
3213 (or (cdr (assoc sect YaTeX-sectioning-level))
3214 0))
3215 0)
3216 YaTeX-environment-indent)))
3217 ;;Default movement
3218 ((and (bolp) fill-prefix) (insert fill-prefix))
3219 (t (save-excursion
3220 (beginning-of-line)
3221 (if fill-prefix
3222 (progn
3223 (delete-region (point)
3224 (progn (skip-chars-forward " \t")
3225 (point)))
3226 (insert fill-prefix))
3227 (skip-chars-forward " \t")
3228 (if (bobp)
3229 nil
3230 (indent-relative-maybe))))
3231 (skip-chars-forward " \t")))
3232 ;;if current line is \begin, re-indent \end too
3233 (if (and (YaTeX-on-begin-end-p) (match-beginning 1))
3234 (save-excursion
3235 ;;(beginning-of-line)
3236 ;;(search-forward "\\begin")
3237 (goto-char (match-beginning 0))
3238 (setq depth (current-column))
3239 (YaTeX-goto-corresponding-environment)
3240 (YaTeX-reindent depth)))
3241 (if (or
3242 (and NTT-jTeX
3243 (save-excursion (beginning-of-line) (looking-at "[ \t]")))
3244 (save-excursion
3245 (beginning-of-line)
3246 (and
3247 (not (bobp))
3248 (progn
3249 (backward-char 1)
3250 (re-search-backward
3251 "\\\\\\(\\(page\\)?ref\\|cite\\){" (point-beginning-of-line) t))
3252 (goto-char (1- (match-end 0)))
3253 (> (save-excursion
3254 (condition-case ()
3255 (progn (forward-list 1) (point))
3256 (error (point-max))))
3257 (point-end-of-line)))))
3258 (save-excursion
3259 (end-of-line)
3260 (let ((p (point)))
3261 (forward-line -1)
3262 (end-of-line)
3263 (or (= p (point))
3264 (looking-at (regexp-quote YaTeX-comment-prefix))
3265 (bobp) (bolp)
3266 (save-excursion
3267 (backward-word 1)
3268 (looking-at "\\sw+")) ;is not japanese string
3269 (insert YaTeX-comment-prefix)))))))
3271 (defun YaTeX-comment-line-break (&optional soft)
3272 "Call comment-indent-new-line and YaTeX-indent-line"
3273 (comment-indent-new-line soft)
3274 (YaTeX-indent-line))
3276 (defun YaTeX-latex2e-p ()
3277 (let ((b (current-buffer))
3278 (ptn (concat YaTeX-ec "documentclass")))
3279 (unwind-protect
3280 (or (save-excursion (search-backward ptn nil t))
3281 (progn
3282 (YaTeX-visit-main t)
3283 (save-excursion (search-backward ptn nil t))))
3284 (set-buffer b))))
3286 (provide 'yatex)
3287 (defvar yatex-mode-load-hook nil
3288 "*List of functions to be called when yatex.el is loaded.")
3289 (if (and YaTeX-emacs-19 YaTeX-display-color-p (not (featurep 'yatex19)))
3290 (load "yatex19"))
3291 (load "yatexhks" t)
3293 ;;-------------------- Final hook jobs --------------------
3294 (substitute-all-key-definition
3295 'fill-paragraph 'YaTeX-fill-paragraph YaTeX-mode-map)
3296 (substitute-all-key-definition
3297 'kill-buffer 'YaTeX-kill-buffer YaTeX-mode-map)
3298 (run-hooks 'yatex-mode-load-hook)
3300 ;; `History' was moved to ChangeLog
3301 ;----------------------------- End of yatex.el -----------------------------