yatex

annotate yatex.el @ 390:fa7370eb8292

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