yatex

annotate yatex.el @ 307:326bd21ad995

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