yatex

annotate yatex.el @ 521:cef987df070f

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