yatex

annotate yatex.el @ 506:feef2aa1f50f

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