yatex

view yatex.el @ 394:67fa6d791bc9

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