yatex

annotate yatex.el @ 407:b423cf9b35ee

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