yatex

annotate yatex.el @ 334:914b56a1386a

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