yatex

annotate yatex.el @ 245:8ad85ce1ee98

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