yatex

annotate yatex.el @ 510:7a64b7761d6b

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