yatex

annotate yatex.el @ 584:907de32064c9

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