yatex

view yatex.el @ 407:b423cf9b35ee

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