yatex

annotate yatexadd.el @ 220:4bb77d7ee8f0

Modify YaTeX:table and YaTeX:figure. User can control the place, before or after, of caption via variable YaTeX:table-caption-first or YaTeX:figure-caption-first.
author yuuji@fusion.yk.gentei.org
date Sun, 15 Jan 2012 17:00:13 +0900
parents ad4e0a008972
children 3f991b0bdcda
rev   line source
yuuji@6 1 ;;; -*- Emacs-Lisp -*-
yuuji@8 2 ;;; YaTeX add-in functions.
yuuji@166 3 ;;; yatexadd.el rev.19
yuuji@166 4 ;;; (c)1991-2011 by HIROSE Yuuji.[yuuji@yatex.org]
yuuji@220 5 ;;; Last modified Sun Jan 15 16:24:33 2012 on fusion
yuuji@141 6 ;;; $Id$
yuuji@6 7
yuuji@6 8 ;;;
yuuji@6 9 ;;Sample functions for LaTeX environment.
yuuji@6 10 ;;;
yuuji@6 11 (defvar YaTeX:tabular-default-rule
yuuji@6 12 "@{\\vrule width 1pt\\ }c|c|c@{\\ \\vrule width 1pt}"
yuuji@69 13 "*Your favorite default rule format.")
yuuji@69 14
yuuji@23 15 (defvar YaTeX:tabular-thick-vrule "\\vrule width %s"
yuuji@69 16 "*Vertical thick line format (without @{}). %s'll be replaced by its width.")
yuuji@69 17
yuuji@23 18 (defvar YaTeX:tabular-thick-hrule "\\noalign{\\hrule height %s}"
yuuji@69 19 "*Horizontal thick line format. %s will be replaced by its width.")
yuuji@69 20
yuuji@6 21 (defun YaTeX:tabular ()
yuuji@18 22 "YaTeX add-in function for tabular environment.
yuuji@18 23 Notice that this function refers the let-variable `env' in
yuuji@18 24 YaTeX-make-begin-end."
yuuji@23 25 (let ((width "") bars (rule "") (and "") (j 1) loc ans (hline "\\hline"))
yuuji@72 26 (if (string= YaTeX-env-name "tabular*")
yuuji@18 27 (setq width (concat "{" (read-string "Width: ") "}")))
yuuji@18 28 (setq loc (YaTeX:read-position "tb")
yuuji@23 29 bars (string-to-int
yuuji@23 30 (read-string "Number of columns(0 for default format): " "3")))
yuuji@23 31 (if (<= bars 0)
yuuji@23 32 (setq ;if 0, simple format
yuuji@23 33 rule YaTeX:tabular-default-rule
yuuji@23 34 and "& &")
yuuji@23 35 (while (< j bars) ;repeat bars-1 times
yuuji@23 36 (setq rule (concat rule "c|")
yuuji@23 37 and (concat and "& ")
yuuji@23 38 j (1+ j)))
yuuji@23 39 (setq rule (concat rule "c"))
yuuji@23 40 (message "(N)ormal-frame or (T)hick frame? [nt]")
yuuji@23 41 (setq ans (read-char))
yuuji@23 42 (cond
yuuji@23 43 ((or (equal ans ?t) (equal ans ?T))
yuuji@23 44 (setq ans (read-string "Rule width: " "1pt")
yuuji@23 45 rule (concat
yuuji@23 46 "@{" (format YaTeX:tabular-thick-vrule ans) "}"
yuuji@23 47 rule
yuuji@23 48 "@{\\ " (format YaTeX:tabular-thick-vrule ans) "}")
yuuji@23 49 hline (format YaTeX:tabular-thick-hrule ans)))
yuuji@23 50 (t (setq rule (concat "|" rule "|")
yuuji@23 51 hline "\\hline"))))
yuuji@23 52
yuuji@6 53 (setq rule (read-string "rule format: " rule))
yuuji@72 54 (setq YaTeX-single-command "hline")
yuuji@6 55
yuuji@69 56 (format "%s%s{%s}" width loc rule)))
yuuji@69 57
yuuji@18 58 (fset 'YaTeX:tabular* 'YaTeX:tabular)
yuuji@80 59 (fset 'YaTeX:supertabular 'YaTeX:tabular)
yuuji@80 60 (defun YaTeX:alignat ()
yuuji@80 61 (concat "{" (read-string "Number of columns: ") "}"))
yuuji@18 62 (defun YaTeX:array ()
yuuji@18 63 (concat (YaTeX:read-position "tb")
yuuji@69 64 "{" (read-string "Column format: ") "}"))
yuuji@80 65 (defun YaTeX:subequations ()
yuuji@80 66 (message (if YaTeX-japan "分かりやすいコメントに変えるとref補完が楽よ"
yuuji@80 67 "Changing comment string reduces effort at `ref' completion"))
yuuji@80 68 (concat " " YaTeX-comment-prefix
yuuji@80 69 (YaTeX::ref-default-label "%H:%M")
yuuji@80 70 (if YaTeX-japan "の式群" "equations")))
yuuji@6 71
yuuji@79 72 (defun YaTeX:read-oneof (oneof &optional quick allow-dup)
yuuji@23 73 (let ((pos "") loc (guide ""))
yuuji@23 74 (and (boundp 'name) name (setq guide (format "%s " name)))
yuuji@79 75 (catch 'quick
yuuji@79 76 (while (not (string-match
yuuji@79 77 (setq loc (read-key-sequence
yuuji@79 78 (format "%s position (`%s') [%s]: "
yuuji@79 79 guide oneof pos));name is in YaTeX-addin
yuuji@79 80 loc (if (fboundp 'events-to-keys)
yuuji@79 81 (events-to-keys loc) loc))
yuuji@79 82 "\r\^g\n"))
yuuji@79 83 (cond
yuuji@79 84 ((string-match loc oneof)
yuuji@79 85 (if (or allow-dup (not (string-match loc pos)))
yuuji@79 86 (setq pos (concat pos loc)))
yuuji@79 87 (if quick (throw 'quick t)))
yuuji@79 88 ((and (string-match loc "\C-h\C-?") (> (length pos) 0))
yuuji@79 89 (setq pos (substring pos 0 (1- (length pos)))))
yuuji@79 90 (t
yuuji@79 91 (ding)
yuuji@79 92 (message "Please input one of `%s'." oneof)
yuuji@79 93 (sit-for 3)))))
yuuji@8 94 (message "")
yuuji@69 95 pos))
yuuji@23 96
yuuji@23 97 (defun YaTeX:read-position (oneof)
yuuji@23 98 "Read a LaTeX (optional) position format such as `[htbp]'."
yuuji@23 99 (let ((pos (YaTeX:read-oneof oneof)))
yuuji@69 100 (if (string= pos "") "" (concat "[" pos "]"))))
yuuji@8 101
yuuji@220 102 ;;;
yuuji@220 103 ;; Functions for figure environemnt
yuuji@220 104 ;;;
yuuji@220 105 (defvar YaTeX:figure-caption-first nil
yuuji@220 106 "Non-nil indicates put caption before figure.")
yuuji@220 107 (defun YaTeX:figure (&optional type firstp)
yuuji@220 108 "YaTeX add-in function for figure(*) environment."
yuuji@220 109 (let*((caption "") (label "") (opts "")
yuuji@220 110 (top (if type firstp YaTeX:figure-caption-first))
yuuji@220 111 (tl (or type "Figure"))
yuuji@220 112 (heremsg (format "%% %s here" tl)))
yuuji@220 113 (setq label (read-string (concat tl " Label: ")))
yuuji@220 114 (if (string= "" label)
yuuji@220 115 (setq YaTeX-section-name "label")
yuuji@220 116 (setq opts (format "\n\\label{%s}" label)))
yuuji@220 117 (setq caption (read-string (concat tl " Caption: ")))
yuuji@220 118 (if (string= "" caption)
yuuji@220 119 (setq YaTeX-section-name "caption")
yuuji@220 120 (setq caption (format "\\caption{%s}" caption)
yuuji@220 121 opts (format "%s\n%s\n%s"
yuuji@220 122 opts
yuuji@220 123 (if top caption heremsg)
yuuji@220 124 (if top heremsg caption)))
yuuji@220 125 (format "\\caption{%s}" caption))
yuuji@220 126 opts))
yuuji@220 127
yuuji@220 128 (fset 'YaTeX:figure* 'YaTeX:figure)
yuuji@220 129
yuuji@220 130 ;;;
yuuji@220 131 ;; Functions for table environemnt
yuuji@220 132 ;;;
yuuji@220 133 (defvar YaTeX:table-caption-first t
yuuji@220 134 "*Non-nil indicates put caption before tabular.")
yuuji@8 135 (defun YaTeX:table ()
yuuji@8 136 "YaTeX add-in function for table environment."
yuuji@73 137 (cond
yuuji@73 138 ((eq major-mode 'yatex-mode)
yuuji@220 139 (setq YaTeX-env-name "tabular")
yuuji@220 140 (YaTeX:figure "Table" YaTeX:table-caption-first))
yuuji@73 141 ((eq major-mode 'texinfo-mode)
yuuji@73 142 (concat " "
yuuji@73 143 (completing-read
yuuji@73 144 "Highlights with: "
yuuji@73 145 '(("@samp")("@kbd")("@code")("@asis")("@file")("@var"))
yuuji@73 146 nil nil "@")))))
yuuji@219 147 (fset 'YaTeX:table* 'YaTeX:table)
yuuji@6 148
yuuji@6 149 (defun YaTeX:description ()
yuuji@6 150 "Truly poor service:-)"
yuuji@72 151 (setq YaTeX-single-command "item[]")
yuuji@69 152 "")
yuuji@6 153
yuuji@6 154 (defun YaTeX:itemize ()
yuuji@6 155 "It's also poor service."
yuuji@72 156 (setq YaTeX-single-command "item")
yuuji@69 157 "")
yuuji@6 158
yuuji@6 159 (fset 'YaTeX:enumerate 'YaTeX:itemize)
yuuji@8 160
yuuji@11 161 (defun YaTeX:picture ()
yuuji@11 162 "Ask the size of coordinates of picture environment."
yuuji@11 163 (concat (YaTeX:read-coordinates "Picture size")
yuuji@69 164 (YaTeX:read-coordinates "Initial position")))
yuuji@11 165
yuuji@12 166 (defun YaTeX:equation ()
yuuji@59 167 (YaTeX-jmode-off)
yuuji@12 168 (if (fboundp 'YaTeX-toggle-math-mode)
yuuji@69 169 (YaTeX-toggle-math-mode t))) ;force math-mode ON.
yuuji@69 170
yuuji@59 171 (mapcar '(lambda (f) (fset f 'YaTeX:equation))
yuuji@59 172 '(YaTeX:eqnarray YaTeX:eqnarray* YaTeX:align YaTeX:align*
yuuji@59 173 YaTeX:split YaTeX:multline YaTeX:multline* YaTeX:gather YaTeX:gather*
yuuji@59 174 YaTeX:aligned* YaTeX:gathered YaTeX:gathered*
yuuji@59 175 YaTeX:alignat YaTeX:alignat* YaTeX:xalignat YaTeX:xalignat*
yuuji@59 176 YaTeX:xxalignat YaTeX:xxalignat*))
yuuji@12 177
yuuji@80 178 (defun YaTeX:alignat ()
yuuji@80 179 (YaTeX:equation)
yuuji@80 180 (concat "{" (read-string "Number of cols: ") "}"))
yuuji@80 181
yuuji@80 182
yuuji@80 183
yuuji@16 184 (defun YaTeX:list ()
yuuji@69 185 "%\n{} %default label\n{} %formatting parameter")
yuuji@16 186
yuuji@18 187 (defun YaTeX:minipage ()
yuuji@18 188 (concat (YaTeX:read-position "cbt")
yuuji@69 189 "{" (read-string "Width: ") "}"))
yuuji@18 190
yuuji@64 191 (defun YaTeX:thebibliography ()
yuuji@72 192 (setq YaTeX-section-name "bibitem")
yuuji@77 193 (concat "{" (read-string "Longest label: ") "}"))
yuuji@64 194
yuuji@80 195 (defun YaTeX:multicols ()
yuuji@80 196 (concat "{" (read-string "Number of columns: ") "}"))
yuuji@80 197
yuuji@8 198 ;;;
yuuji@8 199 ;;Sample functions for section-type command.
yuuji@8 200 ;;;
yuuji@8 201 (defun YaTeX:multiput ()
yuuji@8 202 (concat (YaTeX:read-coordinates "Pos")
yuuji@8 203 (YaTeX:read-coordinates "Step")
yuuji@69 204 "{" (read-string "How many times: ") "}"))
yuuji@8 205
yuuji@8 206 (defun YaTeX:put ()
yuuji@69 207 (YaTeX:read-coordinates "Pos"))
yuuji@8 208
yuuji@8 209 (defun YaTeX:makebox ()
yuuji@23 210 (cond
yuuji@23 211 ((YaTeX-in-environment-p "picture")
yuuji@23 212 (concat (YaTeX:read-coordinates "Dimension")
yuuji@80 213 (YaTeX:read-position "lsrtb")))
yuuji@23 214 (t
yuuji@23 215 (let ((width (read-string "Width: ")))
yuuji@23 216 (if (string< "" width)
yuuji@23 217 (progn
yuuji@23 218 (or (equal (aref width 0) ?\[)
yuuji@23 219 (setq width (concat "[" width "]")))
yuuji@80 220 (concat width (YaTeX:read-position
yuuji@80 221 (if YaTeX-use-LaTeX2e "lrs" "lr")))))))))
yuuji@8 222
yuuji@80 223 ;; (defun YaTeX:framebox ()
yuuji@80 224 ;; (if (YaTeX-quick-in-environment-p "picture")
yuuji@80 225 ;; (YaTeX:makebox)))
yuuji@80 226 (fset 'YaTeX:framebox 'YaTeX:makebox)
yuuji@80 227
yuuji@80 228 (defun YaTeX:parbox ()
yuuji@80 229 (YaTeX:read-position "tbc"))
yuuji@104 230 (defun YaTeX::parbox (argp)
yuuji@104 231 (cond
yuuji@104 232 ((= argp 1) (read-string "Width: "))
yuuji@104 233 ((= argp 2) (read-string "Text: "))))
yuuji@8 234
yuuji@105 235 (defun YaTeX::dashbox ()
yuuji@8 236 (concat "{" (read-string "Dash dimension: ") "}"
yuuji@69 237 (YaTeX:read-coordinates "Dimension")))
yuuji@8 238
yuuji@105 239 (defun YaTeX::savebox (argp)
yuuji@80 240 (cond
yuuji@80 241 ((= argp 1) (read-string "Saved into name: " "\\"))
yuuji@80 242 ((= argp 2) (read-string "Text: "))))
yuuji@80 243
yuuji@51 244 (defvar YaTeX-minibuffer-quick-map nil)
yuuji@51 245 (if YaTeX-minibuffer-quick-map nil
yuuji@51 246 (setq YaTeX-minibuffer-quick-map
yuuji@51 247 (copy-keymap minibuffer-local-completion-map))
yuuji@51 248 (let ((ch (1+ ? )))
yuuji@51 249 (while (< ch 127)
yuuji@51 250 (define-key YaTeX-minibuffer-quick-map (char-to-string ch)
yuuji@51 251 'YaTeX-minibuffer-quick-complete)
yuuji@51 252 (setq ch (1+ ch)))))
yuuji@51 253
yuuji@51 254 (defvar YaTeX:left-right-delimiters
yuuji@51 255 '(("(" . ")") (")" . "(") ("[" . "]") ("]" . "[")
yuuji@51 256 ("\\{" . "\\}") ("\\}" . "\\{") ("|") ("\\|")
yuuji@51 257 ("\\lfloor" . "\\rfloor") ("\\lceil" . "\\rceil")
yuuji@51 258 ("\\langle" . "\\rangle") ("/") (".")
yuuji@51 259 ("\\rfloor" . "\\rfloor") ("\\rceil" . "\\lceil")
yuuji@51 260 ("\\rangle" . "\\langle") ("\\backslash")
yuuji@51 261 ("\\uparrow") ("\\downarrow") ("\\updownarrow") ("\\Updownarrow"))
yuuji@51 262 "TeX math delimiter, which can be completed after \\right or \\left.")
yuuji@51 263
yuuji@51 264 (defvar YaTeX:left-right-default nil "Default string of YaTeX:right.")
yuuji@51 265
yuuji@23 266 (defun YaTeX:left ()
yuuji@51 267 (let ((minibuffer-completion-table YaTeX:left-right-delimiters)
yuuji@72 268 delimiter (leftp (string= YaTeX-single-command "left")))
yuuji@51 269 (setq delimiter
yuuji@51 270 (read-from-minibuffer
yuuji@51 271 (format "Delimiter%s: "
yuuji@51 272 (if YaTeX:left-right-default
yuuji@51 273 (format "(default=`%s')" YaTeX:left-right-default)
yuuji@51 274 "(SPC for menu)"))
yuuji@51 275 nil YaTeX-minibuffer-quick-map))
yuuji@51 276 (if (string= "" delimiter) (setq delimiter YaTeX:left-right-default))
yuuji@72 277 (setq YaTeX-single-command (if leftp "right" "left")
yuuji@51 278 YaTeX:left-right-default
yuuji@51 279 (or (cdr (assoc delimiter YaTeX:left-right-delimiters)) delimiter))
yuuji@51 280 delimiter))
yuuji@51 281
yuuji@23 282 (fset 'YaTeX:right 'YaTeX:left)
yuuji@23 283
yuuji@80 284 (defun YaTeX:langle ()
yuuji@80 285 (setq YaTeX-single-command "rangle")
yuuji@80 286 nil)
yuuji@80 287
yuuji@8 288 (defun YaTeX:read-coordinates (&optional mes varX varY)
yuuji@8 289 (concat
yuuji@8 290 "("
yuuji@8 291 (read-string (format "%s %s: " (or mes "Dimension") (or varX "X")))
yuuji@8 292 ","
yuuji@8 293 (read-string (format "%s %s: " (or mes "Dimension") (or varY "Y")))
yuuji@69 294 ")"))
yuuji@8 295
yuuji@79 296 (defun YaTeX:itembox ()
yuuji@79 297 (concat "{" (read-string "Item heading string: ") "}"))
yuuji@79 298
yuuji@8 299 ;;;
yuuji@8 300 ;;Sample functions for maketitle-type command.
yuuji@8 301 ;;;
yuuji@8 302 (defun YaTeX:sum ()
yuuji@8 303 "Read range of summation."
yuuji@8 304 (YaTeX:check-completion-type 'maketitle)
yuuji@69 305 (concat (YaTeX:read-boundary "_") (YaTeX:read-boundary "^")))
yuuji@8 306
yuuji@8 307 (fset 'YaTeX:int 'YaTeX:sum)
yuuji@8 308
yuuji@8 309 (defun YaTeX:lim ()
yuuji@8 310 "Insert limit notation of \\lim."
yuuji@8 311 (YaTeX:check-completion-type 'maketitle)
yuuji@8 312 (let ((var (read-string "Variable: ")) limit)
yuuji@8 313 (if (string= "" var) ""
yuuji@8 314 (setq limit (read-string "Limit ($ means infinity): "))
yuuji@8 315 (if (string= "$" limit) (setq limit "\\infty"))
yuuji@69 316 (concat "_{" var " \\rightarrow " limit "}"))))
yuuji@8 317
yuuji@8 318 (defun YaTeX:gcd ()
yuuji@8 319 "Add-in function for \\gcd(m,n)."
yuuji@8 320 (YaTeX:check-completion-type 'maketitle)
yuuji@69 321 (YaTeX:read-coordinates "\\gcd" "(?,)" "(,?)"))
yuuji@8 322
yuuji@8 323 (defun YaTeX:read-boundary (ULchar)
yuuji@8 324 "Read boundary usage by _ or ^. _ or ^ is indicated by argument ULchar."
yuuji@11 325 (let ((bndry (read-string (concat ULchar "{???} ($ for infinity): "))))
yuuji@8 326 (if (string= bndry "") ""
yuuji@11 327 (if (string= bndry "$") (setq bndry "\\infty"))
yuuji@69 328 (concat ULchar "{" bndry "}"))))
yuuji@8 329
yuuji@14 330 (defun YaTeX:verb ()
yuuji@14 331 "Enclose \\verb's contents with the same characters."
yuuji@14 332 (let ((quote-char (read-string "Quoting char: " "|"))
yuuji@14 333 (contents (read-string "Quoted contents: ")))
yuuji@69 334 (concat quote-char contents quote-char)))
yuuji@69 335
yuuji@23 336 (fset 'YaTeX:verb* 'YaTeX:verb)
yuuji@14 337
yuuji@43 338 (defun YaTeX:footnotemark ()
yuuji@72 339 (setq YaTeX-section-name "footnotetext")
yuuji@69 340 nil)
yuuji@43 341
yuuji@48 342 (defun YaTeX:cite ()
yuuji@48 343 (let ((comment (read-string "Comment for citation: ")))
yuuji@48 344 (if (string= comment "") ""
yuuji@69 345 (concat "[" comment "]"))))
yuuji@48 346
yuuji@48 347 (defun YaTeX:bibitem ()
yuuji@64 348 (let ((label (read-string "Citation label for bibitem: ")))
yuuji@48 349 (if (string= label "") ""
yuuji@69 350 (concat "[" label "]"))))
yuuji@48 351
yuuji@53 352 (defun YaTeX:item ()
yuuji@73 353 (cond
yuuji@73 354 ((eq major-mode 'yatex-mode)
yuuji@73 355 (YaTeX-indent-line)
yuuji@73 356 (setq YaTeX-section-name "label"))
yuuji@73 357 ((eq major-mode 'texinfo-mode)
yuuji@73 358 (setq YaTeX-section-name "dots"))) ;??
yuuji@53 359 " ")
yuuji@52 360 (fset 'YaTeX:item\[\] 'YaTeX:item)
yuuji@52 361 (fset 'YaTeX:subitem 'YaTeX:item)
yuuji@52 362 (fset 'YaTeX:subsubitem 'YaTeX:item)
yuuji@52 363
yuuji@58 364 (defun YaTeX:linebreak ()
yuuji@58 365 (let (obl)
yuuji@58 366 (message "Break strength 0,1,2,3,4 (default: 4): ")
yuuji@58 367 (setq obl (char-to-string (read-char)))
yuuji@58 368 (if (string-match "[0-4]" obl)
yuuji@58 369 (concat "[" obl "]")
yuuji@69 370 "")))
yuuji@58 371 (fset 'YaTeX:pagebreak 'YaTeX:linebreak)
yuuji@58 372
yuuji@14 373 ;;;
yuuji@14 374 ;;Subroutine
yuuji@14 375 ;;;
yuuji@14 376
yuuji@8 377 (defun YaTeX:check-completion-type (type)
yuuji@8 378 "Check valid completion type."
yuuji@8 379 (if (not (eq type YaTeX-current-completion-type))
yuuji@69 380 (error "This should be completed with %s-type completion." type)))
yuuji@11 381
yuuji@11 382
yuuji@11 383 ;;;
yuuji@11 384 ;;; [[Add-in functions for reading section arguments]]
yuuji@11 385 ;;;
yuuji@11 386 ;; All of add-in functions for reading sections arguments should
yuuji@11 387 ;; take an argument ARGP that specify the argument position.
yuuji@11 388 ;; If argument position is out of range, nil should be returned,
yuuji@11 389 ;; else nil should NOT be returned.
yuuji@13 390
yuuji@13 391 ;;
yuuji@13 392 ; Label selection
yuuji@13 393 ;;
yuuji@11 394 (defvar YaTeX-label-menu-other
yuuji@11 395 (if YaTeX-japan "':他のバッファのラベル\n" "':LABEL IN OTHER BUFFER.\n"))
yuuji@23 396 (defvar YaTeX-label-menu-repeat
yuuji@23 397 (if YaTeX-japan ".:直前の\\refと同じ\n" "/:REPEAT LAST \ref{}\n"))
yuuji@11 398 (defvar YaTeX-label-menu-any
yuuji@11 399 (if YaTeX-japan "*:任意の文字列\n" "*:ANY STRING.\n"))
yuuji@11 400 (defvar YaTeX-label-buffer "*Label completions*")
yuuji@11 401 (defvar YaTeX-label-guide-msg "Select label and hit RETURN.")
yuuji@11 402 (defvar YaTeX-label-select-map nil
yuuji@11 403 "Key map used in label selection buffer.")
yuuji@11 404 (defun YaTeX::label-setup-key-map ()
yuuji@11 405 (if YaTeX-label-select-map nil
yuuji@11 406 (message "Setting up label selection mode map...")
yuuji@68 407 ;(setq YaTeX-label-select-map (copy-keymap global-map))
yuuji@68 408 (setq YaTeX-label-select-map (make-keymap))
yuuji@11 409 (suppress-keymap YaTeX-label-select-map)
yuuji@11 410 (substitute-all-key-definition
yuuji@11 411 'previous-line 'YaTeX::label-previous YaTeX-label-select-map)
yuuji@11 412 (substitute-all-key-definition
yuuji@11 413 'next-line 'YaTeX::label-next YaTeX-label-select-map)
yuuji@11 414 (define-key YaTeX-label-select-map "\C-n" 'YaTeX::label-next)
yuuji@11 415 (define-key YaTeX-label-select-map "\C-p" 'YaTeX::label-previous)
yuuji@11 416 (define-key YaTeX-label-select-map "<" 'beginning-of-buffer)
yuuji@11 417 (define-key YaTeX-label-select-map ">" 'end-of-buffer)
yuuji@11 418 (define-key YaTeX-label-select-map "\C-m" 'exit-recursive-edit)
yuuji@11 419 (define-key YaTeX-label-select-map "\C-j" 'exit-recursive-edit)
yuuji@11 420 (define-key YaTeX-label-select-map " " 'exit-recursive-edit)
yuuji@11 421 (define-key YaTeX-label-select-map "\C-g" 'abort-recursive-edit)
yuuji@11 422 (define-key YaTeX-label-select-map "/" 'isearch-forward)
yuuji@11 423 (define-key YaTeX-label-select-map "?" 'isearch-backward)
yuuji@11 424 (define-key YaTeX-label-select-map "'" 'YaTeX::label-search-tag)
yuuji@23 425 (define-key YaTeX-label-select-map "." 'YaTeX::label-search-tag)
yuuji@11 426 (define-key YaTeX-label-select-map "*" 'YaTeX::label-search-tag)
yuuji@11 427 (message "Setting up label selection mode map...Done")
yuuji@11 428 (let ((key ?A))
yuuji@11 429 (while (<= key ?Z)
yuuji@11 430 (define-key YaTeX-label-select-map (char-to-string key)
yuuji@11 431 'YaTeX::label-search-tag)
yuuji@11 432 (define-key YaTeX-label-select-map (char-to-string (+ key (- ?a ?A)))
yuuji@11 433 'YaTeX::label-search-tag)
yuuji@69 434 (setq key (1+ key))))))
yuuji@69 435
yuuji@11 436 (defun YaTeX::label-next ()
yuuji@11 437 (interactive) (forward-line 1) (message YaTeX-label-guide-msg))
yuuji@11 438 (defun YaTeX::label-previous ()
yuuji@11 439 (interactive) (forward-line -1) (message YaTeX-label-guide-msg))
yuuji@11 440 (defun YaTeX::label-search-tag ()
yuuji@11 441 (interactive)
yuuji@68 442 (let ((case-fold-search t)
yuuji@68 443 (tag (regexp-quote (char-to-string last-command-char))))
yuuji@11 444 (cond
yuuji@11 445 ((save-excursion
yuuji@11 446 (forward-char 1)
yuuji@23 447 (re-search-forward (concat "^" tag) nil t))
yuuji@11 448 (goto-char (match-beginning 0)))
yuuji@11 449 ((save-excursion
yuuji@11 450 (goto-char (point-min))
yuuji@23 451 (re-search-forward (concat "^" tag) nil t))
yuuji@11 452 (goto-char (match-beginning 0))))
yuuji@69 453 (message YaTeX-label-guide-msg)))
yuuji@69 454
yuuji@70 455 ; (defun YaTeX::ref (argp &optional labelcmd refcmd)
yuuji@70 456 ; (cond
yuuji@70 457 ; ((= argp 1)
yuuji@70 458 ; (let ((lnum 0) e0 label label-list (buf (current-buffer))
yuuji@70 459 ; (labelcmd (or labelcmd "label")) (refcmd (or refcmd "ref"))
yuuji@70 460 ; (p (point)) initl line cf)
yuuji@70 461 ; (message "Collecting labels...")
yuuji@70 462 ; (save-window-excursion
yuuji@70 463 ; (YaTeX-showup-buffer
yuuji@70 464 ; YaTeX-label-buffer (function (lambda (x) (window-width x))))
yuuji@70 465 ; (if (fboundp 'select-frame) (setq cf (selected-frame)))
yuuji@70 466 ; (if (eq (window-buffer (minibuffer-window)) buf)
yuuji@70 467 ; (progn
yuuji@70 468 ; (other-window 1)
yuuji@70 469 ; (setq buf (current-buffer))
yuuji@70 470 ; (set-buffer buf)
yuuji@70 471 ; ;(message "cb=%s" buf)(sit-for 3)
yuuji@70 472 ; ))
yuuji@70 473 ; (save-excursion
yuuji@70 474 ; (set-buffer (get-buffer-create YaTeX-label-buffer))
yuuji@70 475 ; (setq buffer-read-only nil)
yuuji@70 476 ; (erase-buffer))
yuuji@70 477 ; (save-excursion
yuuji@70 478 ; (goto-char (point-min))
yuuji@70 479 ; (let ((standard-output (get-buffer YaTeX-label-buffer)))
yuuji@70 480 ; (princ (format "=== LABELS in [%s] ===\n" (buffer-name buf)))
yuuji@70 481 ; (while (YaTeX-re-search-active-forward
yuuji@70 482 ; (concat "\\\\" labelcmd "\\b")
yuuji@70 483 ; (regexp-quote YaTeX-comment-prefix) nil t)
yuuji@70 484 ; (goto-char (match-beginning 0))
yuuji@70 485 ; (skip-chars-forward "^{")
yuuji@70 486 ; (setq label
yuuji@70 487 ; (buffer-substring
yuuji@70 488 ; (1+ (point))
yuuji@70 489 ; (prog2 (forward-list 1) (setq e0 (1- (point)))))
yuuji@70 490 ; label-list (cons label label-list))
yuuji@70 491 ; (or initl
yuuji@70 492 ; (if (< p (point)) (setq initl lnum)))
yuuji@70 493 ; (beginning-of-line)
yuuji@70 494 ; (skip-chars-forward " \t\n" nil)
yuuji@70 495 ; (princ (format "%c:{%s}\t<<%s>>\n" (+ (% lnum 26) ?A) label
yuuji@70 496 ; (buffer-substring (point) (point-end-of-line))))
yuuji@70 497 ; (setq lnum (1+ lnum))
yuuji@70 498 ; (message "Collecting \\%s{}... %d" labelcmd lnum)
yuuji@70 499 ; (goto-char e0))
yuuji@70 500 ; (princ YaTeX-label-menu-other)
yuuji@70 501 ; (princ YaTeX-label-menu-repeat)
yuuji@70 502 ; (princ YaTeX-label-menu-any)
yuuji@70 503 ; );standard-output
yuuji@70 504 ; (goto-char p)
yuuji@70 505 ; (or initl (setq initl lnum))
yuuji@70 506 ; (message "Collecting %s...Done" labelcmd)
yuuji@70 507 ; (if (fboundp 'select-frame) (select-frame cf))
yuuji@70 508 ; (YaTeX-showup-buffer YaTeX-label-buffer nil t)
yuuji@70 509 ; (YaTeX::label-setup-key-map)
yuuji@70 510 ; (setq truncate-lines t)
yuuji@70 511 ; (setq buffer-read-only t)
yuuji@70 512 ; (use-local-map YaTeX-label-select-map)
yuuji@70 513 ; (message YaTeX-label-guide-msg)
yuuji@70 514 ; (goto-line (1+ initl)) ;goto recently defined label line
yuuji@70 515 ; (switch-to-buffer (current-buffer))
yuuji@70 516 ; (unwind-protect
yuuji@70 517 ; (progn
yuuji@70 518 ; (recursive-edit)
yuuji@70 519 ; (set-buffer (get-buffer YaTeX-label-buffer)) ;assertion
yuuji@70 520 ; (beginning-of-line)
yuuji@70 521 ; (setq line (1- (count-lines (point-min)(point))))
yuuji@70 522 ; (cond
yuuji@70 523 ; ((= line -1) (setq label ""))
yuuji@70 524 ; ((= line lnum) (setq label (YaTeX-label-other)))
yuuji@70 525 ; ((= line (1+ lnum))
yuuji@70 526 ; (save-excursion
yuuji@70 527 ; (switch-to-buffer buf)
yuuji@70 528 ; (goto-char p)
yuuji@70 529 ; (if (re-search-backward
yuuji@70 530 ; (concat "\\\\" refcmd "{\\([^}]+\\)}") nil t)
yuuji@70 531 ; (setq label (YaTeX-match-string 1))
yuuji@70 532 ; (setq label ""))))
yuuji@70 533 ; ((>= line (+ lnum 2))
yuuji@70 534 ; (setq label (read-string (format "\\%s{???}: " refcmd))))
yuuji@70 535 ; (t (setq label (nth (- lnum line 1) label-list)))))
yuuji@70 536 ; (bury-buffer YaTeX-label-buffer)))
yuuji@70 537 ; label)))))
yuuji@70 538
yuuji@80 539 (defvar YaTeX-ref-default-label-string "%H%M%S_%d%b%y"
yuuji@80 540 "*Default \\ref time string format.
yuuji@80 541 This format is like strftime(3) but allowed conversion char are as follows;
yuuji@80 542 %y -> Last 2 digit of year, %b -> Month name, %m -> Monthe number(1-12),
yuuji@80 543 %d -> Day, %H -> Hour, %M -> Minute, %S -> Second,
yuuji@80 544 %qx -> alphabetical-decimal conversion of yymmdd.
yuuji@80 545 %qX -> alphabetical-decimal conversion of HHMMSS.
yuuji@80 546 Beware defualt label-string should be always unique. So this format string
yuuji@80 547 should have both time part (%H+%M+%S or %qX) and date
yuuji@80 548 part (%y+(%b|%m)+%d or %qx).")
yuuji@80 549
yuuji@80 550 (defun YaTeX::ref-alphabex (n)
yuuji@80 551 (let ((alphabex ""))
yuuji@80 552 (while (> n 0)
yuuji@80 553 (setq alphabex (concat (char-to-string (+ ?a (% n 26))) alphabex)
yuuji@80 554 n (/ n 26)))
yuuji@80 555 alphabex))
yuuji@80 556
yuuji@80 557 (defun YaTeX::ref-default-label (&optional format)
yuuji@80 558 "Default auto-genarated label string."
yuuji@80 559 ;; We do not use (format-time-string) for emacs-19
yuuji@80 560 (let*((ts (substring (current-time-string) 4))
yuuji@80 561 (y (substring ts -2))
yuuji@80 562 (b (substring ts 0 3))
yuuji@80 563 (d (format "%d" (string-to-int (substring ts 4 6))))
yuuji@80 564 (H (substring ts 7 9))
yuuji@80 565 (M (substring ts 10 12))
yuuji@80 566 (S (substring ts 13 15))
yuuji@80 567 (HMS (+ (* 10000 (string-to-int H))
yuuji@80 568 (* 100 (string-to-int M))
yuuji@80 569 (string-to-int S)))
yuuji@80 570 (talphabex (YaTeX::ref-alphabex HMS))
yuuji@80 571 (mnames "JanFebMarAprMayJunJulAugSepOctNovDec")
yuuji@80 572 (m (format "%02d" (/ (string-match b mnames) 3)))
yuuji@80 573 (ymd (+ (* 10000 (string-to-int y))
yuuji@80 574 (* 100 (string-to-int m))
yuuji@80 575 (string-to-int d)))
yuuji@80 576 (dalphabex (YaTeX::ref-alphabex ymd)))
yuuji@80 577 (YaTeX-replace-formats
yuuji@80 578 (or format YaTeX-ref-default-label-string)
yuuji@80 579 (list (cons "y" y)
yuuji@80 580 (cons "b" b)
yuuji@80 581 (cons "m" m)
yuuji@80 582 (cons "d" d)
yuuji@80 583 (cons "H" H)
yuuji@80 584 (cons "M" M)
yuuji@80 585 (cons "S" S)
yuuji@80 586 (cons "qX" talphabex)
yuuji@80 587 (cons "qx" dalphabex)))))
yuuji@80 588
yuuji@80 589 (defvar YaTeX-ref-generate-label-function 'YaTeX::ref-generate-label
yuuji@80 590 "*Function to generate default label for unnamed \\label{}s.
yuuji@80 591 The function pointed to this value should take two arguments.
yuuji@80 592 First argument is LaTeX macro's name, second is macro's argument.")
yuuji@80 593
yuuji@80 594 (defun YaTeX::ref-generate-label (command arg)
yuuji@70 595 "Generate a label string which is unique in current buffer."
yuuji@80 596 (let ((default (condition-case nil
yuuji@80 597 (YaTeX::ref-default-label)
yuuji@80 598 (error (substring (current-time-string) 4)))))
yuuji@70 599 (read-string "Give a label for this line: "
yuuji@70 600 (if YaTeX-emacs-19 (cons default 1) default))))
yuuji@70 601
yuuji@80 602 (defun YaTeX::ref-getset-label (buffer point &optional noset)
yuuji@70 603 "Get label string in the BUFFER near the POINT.
yuuji@80 604 Make \\label{xx} if no label.
yuuji@80 605 If optional third argument NOSET is non-nil, do not generate new label."
yuuji@73 606 ;;Here, we rewrite the LaTeX source. Therefore we should be careful
yuuji@73 607 ;;to decide the location suitable for \label. Do straightforward!
yuuji@80 608 (let (boundary inspoint cc newlabel (labelholder "label") mathp exp1 env
yuuji@80 609 (r-escape (regexp-quote YaTeX-comment-prefix))
yuuji@80 610 command arg alreadysought foundpoint)
yuuji@80 611 (set-buffer buffer)
yuuji@70 612 (save-excursion
yuuji@70 613 (goto-char point)
yuuji@70 614 (setq cc (current-column))
yuuji@70 615 (if (= (char-after (point)) ?\\) (forward-char 1))
yuuji@70 616 (cond
yuuji@70 617 ((looking-at YaTeX-sectioning-regexp)
yuuji@80 618 (setq command (YaTeX-match-string 0))
yuuji@70 619 (skip-chars-forward "^{")
yuuji@80 620 (setq arg (buffer-substring
yuuji@80 621 (1+ (point))
yuuji@80 622 (progn (forward-list 1) (1- (point)))))
yuuji@70 623 (skip-chars-forward " \t\n")
yuuji@73 624 ;(setq boundary "[^\\]")
yuuji@77 625 (setq inspoint (point))
yuuji@73 626 (setq boundary
yuuji@73 627 (save-excursion
yuuji@77 628 (if (YaTeX-re-search-active-forward
yuuji@77 629 (concat YaTeX-ec-regexp
yuuji@77 630 "\\(" YaTeX-sectioning-regexp "\\|"
yuuji@77 631 "begin\\|item\\)")
yuuji@77 632 r-escape nil 1)
yuuji@73 633 (match-beginning 0)
yuuji@73 634 (1- (point))))))
yuuji@70 635 ((looking-at "item\\s ")
yuuji@80 636 (setq command "item"
yuuji@80 637 cc (+ cc 6))
yuuji@73 638 ;(setq boundary (concat YaTeX-ec-regexp "\\(item\\|begin\\|end\\)\\b"))
yuuji@73 639 (setq boundary
yuuji@73 640 (save-excursion
yuuji@73 641 (if (YaTeX-re-search-active-forward
yuuji@73 642 (concat YaTeX-ec-regexp "\\(item\\|begin\\|end\\)\\b")
yuuji@73 643 r-escape nil 1)
yuuji@73 644 (match-beginning 0)
yuuji@77 645 (1- (point))))
yuuji@77 646 inspoint boundary))
yuuji@70 647 ((looking-at "bibitem")
yuuji@80 648 (setq labelholder "bibitem" ; label holder is bibitem itself
yuuji@80 649 command "bibitem")
yuuji@73 650 (setq boundary
yuuji@73 651 (save-excursion
yuuji@73 652 (if (YaTeX-re-search-active-forward
yuuji@73 653 (concat YaTeX-ec-regexp "\\(bibitem\\|end\\)\\b")
yuuji@73 654 r-escape nil 1)
yuuji@73 655 (match-beginning 0)
yuuji@77 656 (1- (point))))
yuuji@77 657 inspoint boundary))
yuuji@80 658 ((string-match YaTeX::ref-nestable-counter-regexp
yuuji@70 659 (setq env (or (YaTeX-inner-environment t) "document")))
yuuji@80 660 (let ((curtop (get 'YaTeX-inner-environment 'point))
yuuji@80 661 (end (point-max)) label)
yuuji@80 662 (skip-chars-forward " \t\n")
yuuji@80 663 (setq inspoint (point) ;initial candidate
yuuji@80 664 cc (current-column)
yuuji@80 665 command env
yuuji@80 666 alreadysought t)
yuuji@80 667 (if (condition-case nil
yuuji@80 668 (progn
yuuji@80 669 (goto-char curtop)
yuuji@80 670 (YaTeX-goto-corresponding-environment))
yuuji@80 671 (error nil))
yuuji@80 672 (setq end (point)))
yuuji@80 673 (goto-char inspoint)
yuuji@80 674 (while (YaTeX-re-search-active-forward
yuuji@80 675 (concat YaTeX-ec-regexp "label{\\([^}]+\\)}" )
yuuji@80 676 r-escape end t)
yuuji@80 677 (setq label (YaTeX-match-string 1))
yuuji@80 678 (if (and (equal env (YaTeX-inner-environment t))
yuuji@80 679 (= curtop (get 'YaTeX-inner-environment 'point)))
yuuji@80 680 ;;I found the label
yuuji@80 681 (setq alreadysought label
yuuji@80 682 foundpoint (match-end 0))))
yuuji@80 683 ))
yuuji@80 684 ((string-match YaTeX::ref-mathenv-regexp env) ;env is set in above case
yuuji@80 685 (setq command env
yuuji@80 686 mathp t
yuuji@80 687 exp1 (string-match YaTeX::ref-mathenv-exp1-regexp env))
yuuji@73 688 ;;(setq boundary (concat YaTeX-ec-regexp "\\(\\\\\\|end{" env "}\\)"))
yuuji@73 689 (setq boundary
yuuji@73 690 (save-excursion
yuuji@73 691 (if (YaTeX-re-search-active-forward
yuuji@80 692 (concat
yuuji@80 693 YaTeX-ec-regexp "\\("
yuuji@80 694 (if exp1 "" "\\\\\\|")
yuuji@80 695 "end{" env "}\\)")
yuuji@73 696 r-escape nil 1)
yuuji@73 697 (match-beginning 0)
yuuji@77 698 (1- (point))))
yuuji@77 699 inspoint boundary))
yuuji@73 700 ((looking-at "footnote\\s *{")
yuuji@80 701 (setq command "footnote")
yuuji@73 702 (skip-chars-forward "^{") ;move onto `{'
yuuji@73 703 (setq boundary
yuuji@73 704 (save-excursion
yuuji@73 705 (condition-case err
yuuji@73 706 (forward-list 1)
yuuji@73 707 (error (error "\\\\footnote at point %s's brace not closed"
yuuji@73 708 (point))))
yuuji@77 709 (1- (point)))
yuuji@77 710 inspoint boundary))
yuuji@70 711 ((looking-at "caption\\|\\(begin\\)")
yuuji@80 712 (setq command (YaTeX-match-string 0))
yuuji@70 713 (skip-chars-forward "^{")
yuuji@77 714 ;;;;;;(if (match-beginning 1) (forward-list 1))
yuuji@77 715 ;; caption can be treated as mathenv, is it right??
yuuji@80 716 (setq arg (buffer-substring
yuuji@80 717 (1+ (point))
yuuji@80 718 (progn (forward-list 1) (1- (point)))))
yuuji@73 719 ;;(setq boundary (concat YaTeX-ec-regexp "\\(begin\\|end\\)\\b"))
yuuji@77 720 (setq inspoint (point))
yuuji@73 721 (setq boundary
yuuji@73 722 (save-excursion
yuuji@73 723 (if (YaTeX-re-search-active-forward
yuuji@73 724 (concat YaTeX-ec-regexp "\\(begin\\|end\\)\\b")
yuuji@73 725 r-escape nil 1)
yuuji@73 726 (match-beginning 0)
yuuji@73 727 (1- (point))))))
yuuji@70 728 (t ))
yuuji@70 729 (if (save-excursion (skip-chars-forward " \t") (looking-at "%"))
yuuji@70 730 (forward-line 1))
yuuji@80 731 (cond
yuuji@80 732 ((stringp alreadysought)
yuuji@80 733 (put 'YaTeX::ref-getset-label 'foundpoint foundpoint) ;ugly...
yuuji@80 734 alreadysought)
yuuji@80 735 ((and (null alreadysought)
yuuji@80 736 (> boundary (point))
yuuji@80 737 (save-excursion
yuuji@80 738 (YaTeX-re-search-active-forward
yuuji@80 739 ;;(concat "\\(" labelholder "\\)\\|\\(" boundary "\\)")
yuuji@80 740 labelholder
yuuji@80 741 (regexp-quote YaTeX-comment-prefix)
yuuji@80 742 boundary 1))
yuuji@80 743 (match-beginning 0))
yuuji@70 744 ;; if \label{hoge} found, return it
yuuji@80 745 (put 'YaTeX::ref-getset-label 'foundpoint (1- (match-beginning 0)))
yuuji@80 746 (buffer-substring
yuuji@80 747 (progn
yuuji@80 748 (goto-char (match-end 0))
yuuji@80 749 (skip-chars-forward "^{") (1+ (point)))
yuuji@80 750 (progn
yuuji@80 751 (forward-sexp 1) (1- (point)))))
yuuji@70 752 ;;else make a label
yuuji@73 753 ;(goto-char (match-beginning 0))
yuuji@80 754 (noset nil) ;do not set label if noset
yuuji@80 755 (t
yuuji@77 756 (goto-char inspoint)
yuuji@70 757 (skip-chars-backward " \t\n")
yuuji@80 758 (save-excursion
yuuji@80 759 (setq newlabel
yuuji@80 760 (funcall YaTeX-ref-generate-label-function command arg)))
yuuji@70 761 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
yuuji@70 762 (if mathp nil
yuuji@70 763 (insert "\n")
yuuji@70 764 (YaTeX-reindent cc))
yuuji@70 765 (insert (format "\\label{%s}" newlabel))
yuuji@80 766 newlabel)))))
yuuji@70 767
yuuji@80 768 (defvar YaTeX::ref-labeling-regexp-alist-default
yuuji@80 769 '(("\\\\begin{\\(java\\|program\\)}{\\([^}]+\\)}" . 2)
yuuji@80 770 ("\\\\label{\\([^}]+\\)}" . 1))
yuuji@80 771 "Alist of labeling regexp vs. its group number points to label string.
yuuji@80 772 This alist is used in \\ref's argument's completion.")
yuuji@80 773 (defvar YaTeX::ref-labeling-regexp-alist-private nil
yuuji@168 774 "*Private extension to YaTeX::ref-labeling-regexp-alist.
yuuji@80 775 See the documetation of YaTeX::ref-labeling-regexp-alist.")
yuuji@70 776 (defvar YaTeX::ref-labeling-regexp-alist
yuuji@80 777 (append YaTeX::ref-labeling-regexp-alist-default
yuuji@80 778 YaTeX::ref-labeling-regexp-alist-private))
yuuji@70 779 (defvar YaTeX::ref-labeling-regexp
yuuji@70 780 (mapconcat 'car YaTeX::ref-labeling-regexp-alist "\\|"))
yuuji@70 781 (defvar YaTeX::ref-mathenv-regexp
yuuji@80 782 ;; See also YaTeX-ams-math-begin-alist in yatex.el
yuuji@80 783 ;; Define only envs which has counter.(without *)
yuuji@80 784 "equation\\|eqnarray\\|align\\(at\\)?\\|flalign\\|gather\\|xx?alignat\\|multline")
yuuji@80 785 (defvar YaTeX::ref-mathenv-exp1-regexp
yuuji@80 786 "\\(equation\\|multline\\)\\b"
yuuji@80 787 "*Regexp of math-envname which has only one math-expression.")
yuuji@70 788 (defvar YaTeX::ref-enumerateenv-regexp
yuuji@70 789 "enumerate")
yuuji@80 790 (defvar YaTeX::ref-nestable-counter-regexp
yuuji@80 791 "subequations")
yuuji@70 792
yuuji@70 793 (defvar YaTeX::ref-labeling-section-level 2
yuuji@72 794 "*ref補完で収集するセクショニングコマンドの下限レベル
yuuji@70 795 YaTeX-sectioning-levelの数値で指定.")
yuuji@70 796
yuuji@80 797 (defun YaTeX::ref (argp &optional labelcmd refcmd predf)
yuuji@70 798 (setplist 'YaTeX::ref-labeling-regexp nil) ;erase memory cache
yuuji@70 799 (require 'yatexsec)
yuuji@11 800 (cond
yuuji@11 801 ((= argp 1)
yuuji@80 802 (let*((lnum 0) m0 e0 x cmd label match-point point-list boundary
yuuji@70 803 (buf (current-buffer))
yuuji@70 804 (llv YaTeX::ref-labeling-section-level)
yuuji@80 805 (mathenvs YaTeX::ref-mathenv-regexp) envname endrx
yuuji@70 806 (enums YaTeX::ref-enumerateenv-regexp)
yuuji@70 807 (counter
yuuji@70 808 (or labelcmd
yuuji@70 809 (concat
yuuji@70 810 YaTeX-ec-regexp "\\(\\("
yuuji@70 811 (mapconcat
yuuji@70 812 'concat
yuuji@70 813 (delq nil
yuuji@70 814 (mapcar
yuuji@72 815 (function
yuuji@72 816 (lambda (s)
yuuji@72 817 (if (>= llv (cdr s))
yuuji@72 818 (car s))))
yuuji@70 819 YaTeX-sectioning-level))
yuuji@70 820 "\\|")
yuuji@77 821 "\\|caption\\(\\[[^]]+\\]\\)?\\|footnote\\){"
yuuji@80 822 "\\|\\(begin{\\(" mathenvs "\\|" enums "\\)}\\)"
yuuji@80 823 (if YaTeX-use-AMS-LaTeX
yuuji@80 824 (concat
yuuji@80 825 "\\|\\(begin{"
yuuji@80 826 YaTeX::ref-nestable-counter-regexp "}\\)"))
yuuji@80 827 "\\)")))
yuuji@70 828 (regexp (concat "\\(" counter
yuuji@70 829 "\\)\\|\\(" YaTeX::ref-labeling-regexp "\\)"))
yuuji@70 830 (itemsep (concat YaTeX-ec-regexp
yuuji@70 831 "\\(\\(bib\\)?item\\|begin\\|end\\)"))
yuuji@86 832 (refcmd (or refcmd "\\(page\\)?ref"))
yuuji@70 833 (p (point)) initl line cf
yuuji@70 834 (percent (regexp-quote YaTeX-comment-prefix))
yuuji@70 835 (output
yuuji@70 836 (function
yuuji@70 837 (lambda (label p)
yuuji@80 838 (while (setq x (string-match "[\n\t]" label))
yuuji@70 839 (aset label x ? ))
yuuji@80 840 (while (setq x (string-match " +" label))
yuuji@70 841 (setq label (concat
yuuji@70 842 (substring label 0 (1+ (match-beginning 0)))
yuuji@70 843 (substring label (match-end 0)))))
yuuji@70 844 (princ (format "%c: <<%s>>\n" (+ (% lnum 26) ?A) label))
yuuji@70 845 (setq point-list (cons p point-list))
yuuji@70 846 (message "Collecting labels... %d" lnum)
yuuji@70 847 (setq lnum (1+ lnum)))))
yuuji@80 848 (me (if (boundp 'me) me 'YaTeX::ref))
yuuji@70 849 )
yuuji@60 850 (message "Collecting labels...")
yuuji@60 851 (save-window-excursion
yuuji@60 852 (YaTeX-showup-buffer
yuuji@60 853 YaTeX-label-buffer (function (lambda (x) (window-width x))))
yuuji@60 854 (if (fboundp 'select-frame) (setq cf (selected-frame)))
yuuji@60 855 (if (eq (window-buffer (minibuffer-window)) buf)
yuuji@60 856 (progn
yuuji@60 857 (other-window 1)
yuuji@60 858 (setq buf (current-buffer))
yuuji@70 859 (set-buffer buf)))
yuuji@60 860 (save-excursion
yuuji@69 861 (set-buffer (get-buffer-create YaTeX-label-buffer))
yuuji@80 862 (condition-case ()
yuuji@80 863 (if (and YaTeX-use-font-lock (fboundp 'font-lock-mode))
yuuji@80 864 (font-lock-mode 1))
yuuji@80 865 (error nil))
yuuji@69 866 (setq buffer-read-only nil)
yuuji@69 867 (erase-buffer))
yuuji@69 868 (save-excursion
yuuji@70 869 (set-buffer buf)
yuuji@60 870 (goto-char (point-min))
yuuji@80 871 (let ((standard-output (get-buffer YaTeX-label-buffer)) existlabel)
yuuji@60 872 (princ (format "=== LABELS in [%s] ===\n" (buffer-name buf)))
yuuji@48 873 (while (YaTeX-re-search-active-forward
yuuji@70 874 regexp ;;counter
yuuji@70 875 percent nil t)
yuuji@70 876 ;(goto-char (match-beginning 0))
yuuji@70 877 (setq e0 (match-end 0))
yuuji@70 878 (cond
yuuji@80 879 ;;
yuuji@80 880 ;;2005/10/21 Skip it if predicate function returns nil
yuuji@80 881 ((and predf
yuuji@80 882 (let ((md (match-data)))
yuuji@80 883 (prog1
yuuji@80 884 (condition-case nil
yuuji@80 885 (not (funcall predf))
yuuji@80 886 (error nil))
yuuji@80 887 (store-match-data md)))))
yuuji@73 888 ((YaTeX-literal-p) nil)
yuuji@72 889 ((YaTeX-match-string 1)
yuuji@70 890 ;;if standard counter commands found
yuuji@80 891 (setq cmd (YaTeX-match-string 2)
yuuji@80 892 m0 (match-beginning 0))
yuuji@70 893 (setq match-point (match-beginning 0))
yuuji@70 894 (or initl
yuuji@70 895 (if (< p (point)) (setq initl lnum)))
yuuji@70 896 (cond
yuuji@80 897 ;; In any case, variables e0 should be set
yuuji@80 898 ((and YaTeX-use-AMS-LaTeX
yuuji@80 899 (string-match YaTeX::ref-nestable-counter-regexp cmd))
yuuji@80 900 (let (label)
yuuji@80 901 (skip-chars-forward "}")
yuuji@80 902 (setq label (buffer-substring
yuuji@80 903 (point) (min (+ 80 (point)) (point-max))))
yuuji@80 904 ;; to skip (maybe)auto-generated comment
yuuji@80 905 (skip-chars-forward " \t")
yuuji@80 906 (if (looking-at YaTeX-comment-prefix)
yuuji@80 907 (forward-line 1))
yuuji@80 908 (setq e0 (point))
yuuji@80 909 (skip-chars-forward " \t\n")
yuuji@80 910 (if (looking-at "\\\\label{\\([^}]+\\)}")
yuuji@80 911 (setq label (format "(labe:%s)" (YaTeX-match-string 1))
yuuji@80 912 e0 (match-end 1)))
yuuji@80 913 (funcall output (format "--subequation--%s" label) e0)))
yuuji@70 914 ((string-match mathenvs cmd) ;;if matches mathematical env
yuuji@70 915 ;(skip-chars-forward "} \t\n")
yuuji@80 916 ;(forward-line 1) ;2004/1/25
yuuji@80 917 (skip-chars-forward "}")
yuuji@80 918 (setq x (point)
yuuji@80 919 envname (substring
yuuji@80 920 cmd (match-beginning 0) (match-end 0)))
yuuji@80 921 (save-restriction
yuuji@80 922 (narrow-to-region
yuuji@80 923 m0
yuuji@80 924 (save-excursion
yuuji@80 925 (YaTeX-re-search-active-forward
yuuji@80 926 (setq endrx (format "%send{%s}" YaTeX-ec-regexp
yuuji@80 927 (regexp-quote envname)))
yuuji@80 928 percent nil t)))
yuuji@80 929 (catch 'scan
yuuji@80 930 (while (YaTeX-re-search-active-forward
yuuji@80 931 (concat
yuuji@80 932 "\\\\end{\\(" (regexp-quote envname) "\\)";;(1)
yuuji@80 933 (if YaTeX-use-AMS-LaTeX
yuuji@80 934 "\\|\\\\\\(notag\\)") ;;2
yuuji@80 935 (if (string-match
yuuji@80 936 YaTeX::ref-mathenv-exp1-regexp cmd)
yuuji@80 937 "" "\\|\\\\\\\\$")
yuuji@80 938 )
yuuji@80 939 percent nil t)
yuuji@80 940 (let*((quit (match-beginning 1))
yuuji@80 941 (notag (match-beginning 2))
yuuji@80 942 (label ".......................") l2
yuuji@80 943 (e (point)) (m0 (match-beginning 0))
yuuji@80 944 (ln (YaTeX-string-width label)))
yuuji@80 945 (cond
yuuji@80 946 (notag
yuuji@80 947 (YaTeX-re-search-active-forward
yuuji@80 948 "\\\\\\\\" percent nil 1)
yuuji@80 949 (setq x (point)))
yuuji@80 950 (t
yuuji@80 951 (if (YaTeX-re-search-active-backward
yuuji@80 952 YaTeX::ref-labeling-regexp
yuuji@80 953 percent x t)
yuuji@80 954 ;; if \label{x} in math-expression, display it
yuuji@80 955 ;; because formula source is hard to recognize
yuuji@80 956 (progn
yuuji@80 957 (goto-char (match-end 0))
yuuji@80 958 (setq l2 (format "\"label:%s\""
yuuji@80 959 (buffer-substring
yuuji@80 960 (1- (point))
yuuji@80 961 (progn (forward-sexp -1)
yuuji@80 962 (1+ (point))))))
yuuji@80 963 (setq label
yuuji@80 964 (if (< (YaTeX-string-width l2) ln)
yuuji@80 965 (concat
yuuji@80 966 l2
yuuji@80 967 (substring
yuuji@80 968 label
yuuji@80 969 0 (- ln (YaTeX-string-width l2))))
yuuji@80 970 l2))
yuuji@80 971 (goto-char e)))
yuuji@80 972 (funcall output
yuuji@80 973 (concat
yuuji@80 974 label " "
yuuji@80 975 (buffer-substring x m0))
yuuji@80 976 x)
yuuji@80 977 (cond
yuuji@80 978 ((YaTeX-quick-in-environment-p
yuuji@80 979 YaTeX-math-gathering-list)
yuuji@80 980 ;; if here is inner split/cases/gathered env.,
yuuji@80 981 ;; counter for here is only one.
yuuji@80 982 ;; Go out this environment and,
yuuji@80 983 (YaTeX-end-of-environment)
yuuji@80 984 ;; search next expression unit boundary.
yuuji@80 985 (YaTeX-re-search-active-forward
yuuji@80 986 (concat endrx "\\|\\\\begin{")
yuuji@80 987 percent nil 1)
yuuji@80 988 (end-of-line)))
yuuji@80 989 (if quit (throw 'scan t)))))
yuuji@80 990 (setq x (point)))))
yuuji@70 991 (setq e0 (point)))
yuuji@70 992 ((string-match enums cmd)
yuuji@70 993 ;(skip-chars-forward "} \t\n")
yuuji@70 994 (save-restriction
yuuji@70 995 (narrow-to-region
yuuji@70 996 (point)
yuuji@70 997 (save-excursion
yuuji@70 998 (YaTeX-goto-corresponding-environment) (point)))
yuuji@70 999 (forward-line 1)
yuuji@70 1000 (while (YaTeX-re-search-active-forward
yuuji@70 1001 (concat YaTeX-ec-regexp "item\\s ")
yuuji@70 1002 percent nil t)
yuuji@70 1003 (setq x (match-beginning 0))
yuuji@70 1004 (funcall
yuuji@70 1005 output
yuuji@80 1006 (concat
yuuji@80 1007 existlabel
yuuji@80 1008 (buffer-substring
yuuji@80 1009 (match-beginning 0)
yuuji@80 1010 (if (re-search-forward itemsep nil t)
yuuji@80 1011 (progn (goto-char (match-beginning 0))
yuuji@80 1012 (skip-chars-backward " \t")
yuuji@80 1013 (1- (point)))
yuuji@80 1014 (point-end-of-line))))
yuuji@77 1015 x))
yuuji@77 1016 (setq e0 (point-max))))
yuuji@80 1017 ((string-match "bibitem" cmd) ;maybe generated by myself
yuuji@80 1018 (setq label "")
yuuji@80 1019 (skip-chars-forward " \t")
yuuji@80 1020 (if (looking-at "{") ;sure to be true!!
yuuji@80 1021 (forward-list 1))
yuuji@80 1022 (let ((list '(30 10 65))
yuuji@80 1023 (delim ";") q lim len l str)
yuuji@80 1024 (save-excursion
yuuji@80 1025 (setq lim (if (re-search-forward itemsep nil 1)
yuuji@80 1026 (match-beginning 0) (point))))
yuuji@80 1027 (while list
yuuji@80 1028 (skip-chars-forward " \t\n\\")
yuuji@80 1029 (setq q (looking-at "[\"'{]")
yuuji@80 1030 len (car list)
yuuji@80 1031 str
yuuji@80 1032 (buffer-substring
yuuji@80 1033 (point)
yuuji@80 1034 (progn
yuuji@80 1035 (if q (forward-sexp 1)
yuuji@80 1036 (search-forward delim lim 1)
yuuji@80 1037 (forward-char -1))
yuuji@80 1038 (point))))
yuuji@80 1039 (if (> (setq l (YaTeX-string-width str)) len)
yuuji@80 1040 (setq str (concat
yuuji@80 1041 (YaTeX-truncate-string-width
yuuji@80 1042 str (- len (if q 5 4)))
yuuji@80 1043 "... "
yuuji@80 1044 (if q (substring str -1)))))
yuuji@80 1045 (if (< (setq l (YaTeX-string-width str)) len)
yuuji@80 1046 (setq str (concat str (make-string (- len l) ? ))))
yuuji@80 1047 (if (looking-at delim) (goto-char (match-end 0)))
yuuji@80 1048 (setq label (concat label " " str)
yuuji@80 1049 list (cdr list)))
yuuji@80 1050 (funcall output label match-point)))
yuuji@77 1051 ;;else, simple section-type counter
yuuji@70 1052 ((= (char-after (1- (point))) ?{)
yuuji@70 1053 (setq label (buffer-substring
yuuji@70 1054 (match-beginning 0)
yuuji@70 1055 (progn (forward-char -1)
yuuji@70 1056 (forward-list 1)
yuuji@70 1057 (point))))
yuuji@77 1058 (funcall output label match-point)
yuuji@77 1059 ;; Skip preceding label if exists
yuuji@80 1060 (if (YaTeX::ref-getset-label (current-buffer) match-point t)
yuuji@80 1061 (goto-char (get 'YaTeX::ref-getset-label 'foundpoint)))
yuuji@77 1062 (if (save-excursion
yuuji@77 1063 (skip-chars-forward "\t \n")
yuuji@77 1064 (looking-at YaTeX::ref-labeling-regexp))
yuuji@77 1065 (setq e0 (match-end 0))))
yuuji@70 1066 (t
yuuji@70 1067 (skip-chars-forward " \t")
yuuji@70 1068 (setq label (buffer-substring
yuuji@70 1069 (match-beginning 0)
yuuji@70 1070 (if (re-search-forward
yuuji@70 1071 itemsep
yuuji@70 1072 nil t)
yuuji@70 1073 (progn
yuuji@70 1074 (goto-char (match-beginning 0))
yuuji@70 1075 (skip-chars-backward " \t")
yuuji@70 1076 (1- (point)))
yuuji@70 1077 (point-end-of-line))))
yuuji@70 1078 (funcall output label match-point)
yuuji@77 1079 (if (save-excursion
yuuji@77 1080 (skip-chars-forward "\t \n")
yuuji@77 1081 (looking-at YaTeX::ref-labeling-regexp))
yuuji@77 1082 (setq e0 (match-end 0)))))
yuuji@70 1083 ) ;;put label buffer
yuuji@70 1084 ;;
yuuji@70 1085 ;; if user defined label found
yuuji@70 1086 (t
yuuji@70 1087 ;; memorize line number and label into property
yuuji@70 1088 (goto-char (match-beginning 0))
yuuji@70 1089 (let ((list YaTeX::ref-labeling-regexp-alist)
yuuji@70 1090 (cache (symbol-plist 'YaTeX::ref-labeling-regexp)))
yuuji@70 1091 (while list
yuuji@70 1092 (if (looking-at (car (car list)))
yuuji@70 1093 (progn
yuuji@70 1094 (setq label (YaTeX-match-string 0))
yuuji@70 1095 (put 'YaTeX::ref-labeling-regexp lnum
yuuji@70 1096 (YaTeX-match-string (cdr (car list))))
yuuji@70 1097 (funcall output label 0) ;;0 is dummy, never used
yuuji@70 1098 (setq list nil)))
yuuji@70 1099 (setq list (cdr list))))
yuuji@70 1100 ))
yuuji@11 1101 (goto-char e0))
yuuji@11 1102 (princ YaTeX-label-menu-other)
yuuji@23 1103 (princ YaTeX-label-menu-repeat)
yuuji@11 1104 (princ YaTeX-label-menu-any)
yuuji@69 1105 );standard-output
yuuji@11 1106 (goto-char p)
yuuji@60 1107 (or initl (setq initl lnum))
yuuji@70 1108 (message "Collecting labels...Done")
yuuji@60 1109 (if (fboundp 'select-frame) (select-frame cf))
yuuji@59 1110 (YaTeX-showup-buffer YaTeX-label-buffer nil t)
yuuji@11 1111 (YaTeX::label-setup-key-map)
yuuji@11 1112 (setq truncate-lines t)
yuuji@11 1113 (setq buffer-read-only t)
yuuji@11 1114 (use-local-map YaTeX-label-select-map)
yuuji@11 1115 (message YaTeX-label-guide-msg)
yuuji@60 1116 (goto-line (1+ initl)) ;goto recently defined label line
yuuji@68 1117 (switch-to-buffer (current-buffer))
yuuji@11 1118 (unwind-protect
yuuji@11 1119 (progn
yuuji@11 1120 (recursive-edit)
yuuji@70 1121
yuuji@11 1122 (set-buffer (get-buffer YaTeX-label-buffer)) ;assertion
yuuji@11 1123 (beginning-of-line)
yuuji@60 1124 (setq line (1- (count-lines (point-min)(point))))
yuuji@11 1125 (cond
yuuji@60 1126 ((= line -1) (setq label ""))
yuuji@11 1127 ((= line lnum) (setq label (YaTeX-label-other)))
yuuji@23 1128 ((= line (1+ lnum))
yuuji@23 1129 (save-excursion
yuuji@23 1130 (switch-to-buffer buf)
yuuji@23 1131 (goto-char p)
yuuji@48 1132 (if (re-search-backward
yuuji@86 1133 (concat "\\\\" refcmd "{") nil t)
yuuji@86 1134 (setq label (YaTeX-buffer-substring
yuuji@86 1135 (progn (goto-char (1- (match-end 0)))
yuuji@86 1136 (1+ (point)))
yuuji@86 1137 (progn (forward-list 1)
yuuji@86 1138 (1- (point)))))
yuuji@23 1139 (setq label ""))))
yuuji@23 1140 ((>= line (+ lnum 2))
yuuji@48 1141 (setq label (read-string (format "\\%s{???}: " refcmd))))
yuuji@70 1142 (t ;(setq label (nth (- lnum line 1) label-list))
yuuji@70 1143 (setq label
yuuji@70 1144 (or (get 'YaTeX::ref-labeling-regexp line)
yuuji@70 1145 (YaTeX::ref-getset-label
yuuji@70 1146 buf (nth (- lnum line 1) point-list))))
yuuji@70 1147 )))
yuuji@11 1148 (bury-buffer YaTeX-label-buffer)))
yuuji@69 1149 label)))))
yuuji@69 1150
yuuji@168 1151 (defun YaTeX::label-rename-refs (old new &optional def ref)
yuuji@168 1152 "Rename reference tag from OLD to NEW.
yuuji@168 1153 Optional arguments DEF and REF specify defining command and
yuuji@168 1154 referring command respectively.
yuuji@168 1155 ---------------------------------------------------------
yuuji@168 1156 CONTROL KEYS - キーの説明
yuuji@168 1157 y Replace 置換する
yuuji@168 1158 n Do not replace 置換しない
yuuji@168 1159 ! Replace All w/o query 残る全部を確認なしで置換
yuuji@168 1160 r Enter Recursive-edit 再帰編集モードへ
yuuji@168 1161 q Quit from replacing ここまでで置換をやめる
yuuji@168 1162
yuuji@168 1163 Don't forget to exit from recursive edit by typing \\[exit-recursive-edit]
yuuji@168 1164 再帰編集に入ったら \\[exit-recursive-edit] で抜け忘れなきよう。"
yuuji@168 1165 (save-window-excursion
yuuji@168 1166 (catch 'exit
yuuji@168 1167 (let*((bufs (YaTeX-yatex-buffer-list)) buf b e
yuuji@168 1168 (oldptn (regexp-quote old))
yuuji@168 1169 (sw (selected-window))
yuuji@168 1170 (ptn (concat
yuuji@168 1171 "\\(" YaTeX-refcommand-ref-regexp "\\)"
yuuji@168 1172 "\\s *{" oldptn "}"))
yuuji@170 1173 (repface (and (fboundp 'make-overlay)
yuuji@170 1174 (fboundp 'internal-find-face)
yuuji@170 1175 (if (internal-find-face 'isearch) 'isearch 'region)))
yuuji@170 1176 ov
yuuji@173 1177 (qmsg "Replace to `%s'? [yn!rq?]")
yuuji@168 1178 continue ch)
yuuji@168 1179 (while bufs
yuuji@168 1180 (set-buffer (setq buf (car bufs)))
yuuji@168 1181 (save-excursion
yuuji@168 1182 (goto-char (point-min))
yuuji@168 1183 (while (re-search-forward ptn nil t)
yuuji@168 1184 (goto-char (match-end 1))
yuuji@168 1185 (skip-chars-forward " \t\n{")
yuuji@168 1186 (unwind-protect
yuuji@168 1187 (if (and
yuuji@168 1188 (looking-at oldptn)
yuuji@168 1189 (setq b (match-beginning 0)
yuuji@168 1190 e (match-end 0))
yuuji@168 1191 (or continue
yuuji@168 1192 (catch 'query
yuuji@170 1193 (if repface
yuuji@168 1194 (if ov (move-overlay ov b e)
yuuji@168 1195 (overlay-put
yuuji@168 1196 (setq ov (make-overlay b e))
yuuji@170 1197 'face repface)))
yuuji@168 1198 (switch-to-buffer buf)
yuuji@168 1199 (while t
yuuji@168 1200 (message qmsg new)
yuuji@168 1201 (setq ch (read-char))
yuuji@168 1202 (cond
yuuji@168 1203 ((= ch ?q) (throw 'exit t))
yuuji@168 1204 ((= ch ?r)
yuuji@168 1205 (message
yuuji@173 1206 "Don't forget to exit recursive-edit by `%s'"
yuuji@168 1207 (key-description
yuuji@168 1208 (where-is-internal
yuuji@168 1209 'exit-recursive-edit '(keymap) t)))
yuuji@168 1210 (sleep-for 2)
yuuji@168 1211 (recursive-edit))
yuuji@168 1212 ((= ch ?y) (throw 'query t))
yuuji@168 1213 ((= ch ?!) (throw 'query (setq continue t)))
yuuji@168 1214 ((= ch ??)
yuuji@168 1215 (describe-function
yuuji@168 1216 'YaTeX::label-rename-refs)
yuuji@168 1217 (select-window (get-buffer-window "*Help*"))
yuuji@168 1218 (search-forward "----")
yuuji@168 1219 (forward-line 1)
yuuji@168 1220 (set-window-start (selected-window) (point))
yuuji@168 1221 (sit-for 0)
yuuji@168 1222 (select-window sw))
yuuji@168 1223 ((= ch ?n) (throw 'query nil)))))))
yuuji@168 1224 (replace-match new))
yuuji@168 1225 (and ov (delete-overlay ov)))))
yuuji@168 1226 (setq bufs (cdr bufs)))))))
yuuji@168 1227
yuuji@167 1228 (defun YaTeX::label (argp &optional labname refname)
yuuji@163 1229 "Read label name and return it with copying \\ref{LABEL-NAME} to kill-ring."
yuuji@163 1230 (cond
yuuji@163 1231 ((= argp 1)
yuuji@168 1232 (let*((chmode (boundp (intern-soft "old")))
yuuji@168 1233 (dlab (if chmode old ;if called via YaTeX-change-section (tricky...)
yuuji@163 1234 (YaTeX::ref-default-label)))
yuuji@167 1235 (label (read-string
yuuji@167 1236 (format "New %s name: " (or labname "label"))
yuuji@167 1237 (cons dlab 1))))
yuuji@163 1238 (if (string< "" label)
yuuji@163 1239 (let ((refstr (format "\\%s{%s}" (or refname "ref") label))
yuuji@163 1240 (key (key-description (where-is-internal 'yank nil t)))
yuuji@163 1241 (msg
yuuji@163 1242 (if YaTeX-japan
yuuji@163 1243 "をkill-ringに入れました。yank(%s)で取り出せます。"
yuuji@163 1244 " is stored into kill-ring. Paste it by yank(%s).")))
yuuji@163 1245 (kill-new refstr)
yuuji@170 1246 (and chmode
yuuji@170 1247 (not (equal old label))
yuuji@173 1248 (YaTeX::label-rename-refs old label))
yuuji@173 1249 (message (concat "`%s'" msg) refstr key)))
yuuji@163 1250 label))))
yuuji@163 1251
yuuji@163 1252
yuuji@16 1253 (fset 'YaTeX::pageref 'YaTeX::ref)
yuuji@80 1254 (defun YaTeX::tabref (argp) ; For the style file of IPSJ journal
yuuji@80 1255 (YaTeX::ref
yuuji@80 1256 argp nil nil
yuuji@80 1257 (function
yuuji@80 1258 (lambda ()
yuuji@80 1259 (YaTeX-quick-in-environment-p "table")))))
yuuji@80 1260 (defun YaTeX::figref (argp) ; For the style file of IPSJ journal
yuuji@80 1261 (YaTeX::ref
yuuji@80 1262 argp nil nil
yuuji@80 1263 (function
yuuji@80 1264 (lambda ()
yuuji@80 1265 (YaTeX-quick-in-environment-p "figure")))))
yuuji@70 1266
yuuji@80 1267 (defun YaTeX::cite-collect-bibs-external (bibptn &rest files)
yuuji@80 1268 "Collect bibentry from FILES(variable length argument) ;
yuuji@70 1269 and print them to standard output."
yuuji@70 1270 ;;Thanks; http://icarus.ilcs.hokudai.ac.jp/comp/biblio.html
yuuji@80 1271 (let*((tb (get-buffer-create " *bibtmp*"))
yuuji@80 1272 (bibitemsep "^\\s *@[A-Za-z]")
yuuji@80 1273 (target (if (string< "" bibptn) bibptn bibitemsep))
yuuji@80 1274 (checkrx (concat "\\(" bibptn "\\)\\|" bibitemsep))
yuuji@80 1275 beg
yuuji@80 1276 (searchnext
yuuji@80 1277 (if (string< "" bibptn)
yuuji@80 1278 (function
yuuji@80 1279 (lambda()
yuuji@80 1280 (setq beg (point))
yuuji@80 1281 (and
yuuji@80 1282 (prog1
yuuji@80 1283 (re-search-forward target nil t)
yuuji@80 1284 (end-of-line))
yuuji@80 1285 (re-search-backward bibitemsep beg t))))
yuuji@80 1286 (function
yuuji@80 1287 (lambda()
yuuji@80 1288 (re-search-forward target nil t)))))
yuuji@80 1289 )
yuuji@70 1290 (save-excursion
yuuji@70 1291 (set-buffer tb)
yuuji@80 1292 (princ (format "%sbegin{thebibliography}\n" YaTeX-ec))
yuuji@70 1293 (while files
yuuji@70 1294 (erase-buffer)
yuuji@70 1295 (cond
yuuji@70 1296 ((file-exists-p (car files))
yuuji@70 1297 (insert-file-contents (car files)))
yuuji@70 1298 ((file-exists-p (concat (car files) ".bib"))
yuuji@70 1299 (insert-file-contents (concat (car files) ".bib"))))
yuuji@70 1300 (save-excursion
yuuji@70 1301 (goto-char (point-min))
yuuji@80 1302 (while (funcall searchnext)
yuuji@70 1303 (skip-chars-forward "^{,")
yuuji@80 1304 (setq beg (point))
yuuji@70 1305 (if (= (char-after (point)) ?{)
yuuji@70 1306 (princ (format "%sbibitem{%s}%s\n"
yuuji@70 1307 YaTeX-ec
yuuji@70 1308 (buffer-substring
yuuji@70 1309 (1+ (point))
yuuji@70 1310 (progn (skip-chars-forward "^,\n")
yuuji@70 1311 (point)))
yuuji@80 1312 (mapconcat
yuuji@80 1313 (function
yuuji@80 1314 (lambda (kwd)
yuuji@80 1315 (goto-char beg)
yuuji@80 1316 (if (re-search-forward
yuuji@80 1317 (concat kwd "\\s *=") nil t)
yuuji@80 1318 (buffer-substring
yuuji@80 1319 (progn
yuuji@80 1320 (goto-char (match-end 0))
yuuji@80 1321 (skip-chars-forward " \t\n")
yuuji@80 1322 (point))
yuuji@80 1323 (progn
yuuji@80 1324 (if (looking-at "[{\"]")
yuuji@80 1325 (forward-sexp 1)
yuuji@80 1326 (forward-char 1)
yuuji@80 1327 (skip-chars-forward "^,}"))
yuuji@80 1328 (point))))))
yuuji@80 1329 '("author" "year" "title" )
yuuji@80 1330 ";"))))
yuuji@80 1331 (and (re-search-forward bibitemsep nil t)
yuuji@80 1332 (forward-line -1))))
yuuji@80 1333 (setq files (cdr files)))
yuuji@80 1334 (princ (format "%sbegin{thebibliography}\n" YaTeX-ec)))))
yuuji@70 1335
yuuji@77 1336 (defvar YaTeX::cite-bibitem-macro-regexp "bibitem\\|harvarditem"
yuuji@77 1337 "*Regexp of macro name of bibitem definition")
yuuji@77 1338
yuuji@80 1339 (defun YaTeX::cite-collect-bibs-internal (bibptn)
yuuji@70 1340 "Collect bibentry in the current buffer and print them to standard output."
yuuji@77 1341 (let ((ptn (concat YaTeX-ec-regexp
yuuji@77 1342 "\\(" YaTeX::cite-bibitem-macro-regexp "\\)\\b"))
yuuji@80 1343 (lim (concat YaTeX-ec-regexp
yuuji@80 1344 "\\(" YaTeX::cite-bibitem-macro-regexp "\\b\\)"
yuuji@80 1345 "\\|\\(end{\\)"))
yuuji@70 1346 (pcnt (regexp-quote YaTeX-comment-prefix)))
yuuji@80 1347 ;; Using bibptn not yet implemented.
yuuji@80 1348 ;; Do you need it?? 2005/11/22
yuuji@70 1349 (save-excursion
yuuji@70 1350 (while (YaTeX-re-search-active-forward ptn pcnt nil t)
yuuji@70 1351 (skip-chars-forward "^{\n")
yuuji@70 1352 (or (eolp)
yuuji@80 1353 (princ (format "%sbibitem%s %s\n"
yuuji@70 1354 YaTeX-ec
yuuji@70 1355 (buffer-substring
yuuji@80 1356 (point)
yuuji@80 1357 (progn (forward-sexp 1) (point)))
yuuji@80 1358 (buffer-substring
yuuji@80 1359 (progn (skip-chars-forward "\n \t") (point))
yuuji@80 1360 (save-excursion
yuuji@80 1361 (if (YaTeX-re-search-active-forward
yuuji@80 1362 lim pcnt nil t)
yuuji@80 1363 (progn
yuuji@80 1364 (goto-char (match-beginning 0))
yuuji@80 1365 (skip-chars-backward "\n \t")
yuuji@80 1366 (point))
yuuji@80 1367 (point-end-of-line)))))))))))
yuuji@70 1368
yuuji@80 1369 (defun YaTeX::cite (argp &rest dummy)
yuuji@48 1370 (cond
yuuji@48 1371 ((eq argp 1)
yuuji@70 1372 (let* ((cb (current-buffer))
yuuji@70 1373 (f (file-name-nondirectory buffer-file-name))
yuuji@70 1374 (d default-directory)
yuuji@70 1375 (hilit-auto-highlight nil)
yuuji@70 1376 (pcnt (regexp-quote YaTeX-comment-prefix))
yuuji@70 1377 (bibrx (concat YaTeX-ec-regexp "bibliography{\\([^}]+\\)}"))
yuuji@80 1378 (bibptn (read-string "Pattern: "))
yuuji@70 1379 (bbuf (get-buffer-create " *bibitems*"))
yuuji@70 1380 (standard-output bbuf)
yuuji@80 1381 (me 'YaTeX::cite) ;shuld set this for using YaTeX::ref
yuuji@70 1382 bibs files)
yuuji@70 1383 (set-buffer bbuf)(erase-buffer)(set-buffer cb)
yuuji@70 1384 (save-excursion
yuuji@70 1385 (goto-char (point-min))
yuuji@70 1386 ;;(1)search external bibdata
yuuji@70 1387 (while (YaTeX-re-search-active-forward bibrx pcnt nil t)
yuuji@70 1388 (apply 'YaTeX::cite-collect-bibs-external
yuuji@80 1389 bibptn
yuuji@70 1390 (YaTeX-split-string
yuuji@70 1391 (YaTeX-match-string 1) ",")))
yuuji@70 1392 ;;(2)search direct \bibitem usage
yuuji@80 1393 (YaTeX::cite-collect-bibs-internal bibptn)
yuuji@70 1394 (if (progn
yuuji@70 1395 (YaTeX-visit-main t)
yuuji@70 1396 (not (eq (current-buffer) cb)))
yuuji@70 1397 (save-excursion
yuuji@70 1398 (goto-char (point-min))
yuuji@70 1399 ;;(1)search external bibdata
yuuji@70 1400 (while (YaTeX-re-search-active-forward bibrx pcnt nil t)
yuuji@70 1401 (apply 'YaTeX::cite-collect-bibs-external
yuuji@80 1402 bibptn
yuuji@70 1403 (YaTeX-split-string
yuuji@70 1404 (YaTeX-match-string 1) ",")))
yuuji@70 1405 ;;(2)search internal
yuuji@80 1406 (YaTeX::cite-collect-bibs-internal bibptn)))
yuuji@70 1407 ;;Now bbuf holds the list of bibitem
yuuji@70 1408 (set-buffer bbuf)
yuuji@80 1409 ;;;(switch-to-buffer bbuf)
yuuji@80 1410 (if (fboundp 'font-lock-fontify-buffer) (font-lock-fontify-buffer))
yuuji@77 1411 (YaTeX::ref
yuuji@77 1412 argp
yuuji@77 1413 (concat "\\\\\\("
yuuji@77 1414 YaTeX::cite-bibitem-macro-regexp
yuuji@77 1415 "\\)\\(\\[.*\\]\\)?")
yuuji@77 1416 "cite"))))
yuuji@77 1417
yuuji@48 1418 (t nil)))
yuuji@11 1419
yuuji@167 1420 (defun YaTeX::bibitem (argp)
yuuji@167 1421 "Add-in function to insert argument of \\bibitem."
yuuji@167 1422 (YaTeX::label argp "label" "cite"))
yuuji@167 1423
yuuji@77 1424 ;;; for AMS-LaTeX
yuuji@70 1425 (and YaTeX-use-AMS-LaTeX (fset 'YaTeX::eqref 'YaTeX::ref))
yuuji@77 1426 ;;; for Harvard citation style
yuuji@77 1427 (fset 'YaTeX::citeasnoun 'YaTeX::cite)
yuuji@77 1428 (fset 'YaTeX::possessivecite 'YaTeX::cite)
yuuji@77 1429 (fset 'YaTeX::citeyear 'YaTeX::cite)
yuuji@77 1430 (fset 'YaTeX::citename 'YaTeX::cite)
yuuji@80 1431 (fset 'YaTeX::citep 'YaTeX::cite)
yuuji@80 1432 (fset 'YaTeX::citet 'YaTeX::cite)
yuuji@70 1433
yuuji@48 1434 (defun YaTeX-select-other-yatex-buffer ()
yuuji@48 1435 "Select buffer from all yatex-mode's buffers interactivelly."
yuuji@48 1436 (interactive)
yuuji@48 1437 (let ((lbuf "*YaTeX mode buffers*") (blist (YaTeX-yatex-buffer-list))
yuuji@48 1438 (lnum -1) buf rv
yuuji@11 1439 (ff "**find-file**"))
yuuji@12 1440 (YaTeX-showup-buffer
yuuji@12 1441 lbuf (function (lambda (x) 1))) ;;Select next window surely.
yuuji@69 1442 (save-excursion
yuuji@69 1443 (set-buffer (get-buffer lbuf))
yuuji@69 1444 (setq buffer-read-only nil)
yuuji@69 1445 (erase-buffer))
yuuji@69 1446 (let ((standard-output (get-buffer lbuf)))
yuuji@11 1447 (while blist
yuuji@48 1448 (princ
yuuji@48 1449 (format "%c:{%s}\n" (+ (% (setq lnum (1+ lnum)) 26) ?A)
yuuji@48 1450 (buffer-name (car blist))))
yuuji@11 1451 (setq blist (cdr blist)))
yuuji@11 1452 (princ (format "':{%s}" ff)))
yuuji@59 1453 (YaTeX-showup-buffer lbuf nil t)
yuuji@11 1454 (YaTeX::label-setup-key-map)
yuuji@11 1455 (setq buffer-read-only t)
yuuji@11 1456 (use-local-map YaTeX-label-select-map)
yuuji@11 1457 (message YaTeX-label-guide-msg)
yuuji@11 1458 (unwind-protect
yuuji@11 1459 (progn
yuuji@11 1460 (recursive-edit)
yuuji@11 1461 (set-buffer lbuf)
yuuji@11 1462 (beginning-of-line)
yuuji@11 1463 (setq rv
yuuji@11 1464 (if (re-search-forward "{\\([^\\}]+\\)}" (point-end-of-line) t)
yuuji@11 1465 (buffer-substring (match-beginning 1) (match-end 1)) nil)))
yuuji@11 1466 (kill-buffer lbuf))
yuuji@48 1467 (if (string= rv ff)
yuuji@48 1468 (progn
yuuji@48 1469 (call-interactively 'find-file)
yuuji@48 1470 (current-buffer))
yuuji@69 1471 rv)))
yuuji@48 1472
yuuji@48 1473 (defun YaTeX-label-other ()
yuuji@48 1474 (let ((rv (YaTeX-select-other-yatex-buffer)))
yuuji@11 1475 (cond
yuuji@11 1476 ((null rv) "")
yuuji@11 1477 (t
yuuji@11 1478 (set-buffer rv)
yuuji@80 1479 (funcall me argp labelcmd refcmd)))))
yuuji@11 1480
yuuji@13 1481 ;;
yuuji@13 1482 ; completion for the arguments of \newcommand
yuuji@13 1483 ;;
yuuji@13 1484 (defun YaTeX::newcommand (&optional argp)
yuuji@13 1485 (cond
yuuji@13 1486 ((= argp 1)
yuuji@13 1487 (let ((command (read-string "Define newcommand: " "\\")))
yuuji@13 1488 (put 'YaTeX::newcommand 'command (substring command 1))
yuuji@13 1489 command))
yuuji@13 1490 ((= argp 2)
yuuji@13 1491 (let ((argc
yuuji@13 1492 (string-to-int (read-string "Number of arguments(Default 0): ")))
yuuji@13 1493 (def (read-string "Definition: "))
yuuji@13 1494 (command (get 'YaTeX::newcommand 'command)))
yuuji@13 1495 ;;!!! It's illegal to insert string in the add-in function !!!
yuuji@13 1496 (if (> argc 0) (insert (format "[%d]" argc)))
yuuji@13 1497 (if (and (stringp command)
yuuji@13 1498 (string< "" command)
yuuji@51 1499 (y-or-n-p "Update dictionary?"))
yuuji@18 1500 (cond
yuuji@18 1501 ((= argc 0)
yuuji@18 1502 (YaTeX-update-table
yuuji@18 1503 (list command)
yuuji@18 1504 'singlecmd-table 'user-singlecmd-table 'tmp-singlecmd-table))
yuuji@18 1505 ((= argc 1)
yuuji@18 1506 (YaTeX-update-table
yuuji@18 1507 (list command)
yuuji@18 1508 'section-table 'user-section-table 'tmp-section-table))
yuuji@18 1509 (t (YaTeX-update-table
yuuji@18 1510 (list command argc)
yuuji@18 1511 'section-table 'user-section-table 'tmp-section-table))))
yuuji@13 1512 (message "")
yuuji@13 1513 def ;return command name
yuuji@13 1514 ))
yuuji@69 1515 (t "")))
yuuji@13 1516
yuuji@80 1517 (defun YaTeX::newcounter (&optional argp)
yuuji@80 1518 (cond
yuuji@80 1519 ((= argp 1)
yuuji@80 1520 (read-string "New counter name: "))
yuuji@80 1521 (t "")))
yuuji@80 1522
yuuji@16 1523 ;;
yuuji@16 1524 ; completion for the arguments of \pagestyle
yuuji@16 1525 ;;
yuuji@16 1526 (defun YaTeX::pagestyle (&optional argp)
yuuji@16 1527 "Read the pagestyle with completion."
yuuji@16 1528 (completing-read
yuuji@16 1529 "Page style: "
yuuji@69 1530 '(("plain") ("empty") ("headings") ("myheadings") ("normal") nil)))
yuuji@69 1531
yuuji@51 1532 (fset 'YaTeX::thispagestyle 'YaTeX::pagestyle)
yuuji@51 1533
yuuji@16 1534 ;;
yuuji@16 1535 ; completion for the arguments of \pagenumbering
yuuji@16 1536 ;;
yuuji@16 1537 (defun YaTeX::pagenumbering (&optional argp)
yuuji@16 1538 "Read the numbering style."
yuuji@16 1539 (completing-read
yuuji@16 1540 "Page numbering style: "
yuuji@69 1541 '(("arabic") ("Alpha") ("alpha") ("Roman") ("roman"))))
yuuji@13 1542
yuuji@23 1543 ;;
yuuji@23 1544 ; Length
yuuji@23 1545 ;;
yuuji@23 1546 (defvar YaTeX:style-parameters-default
yuuji@23 1547 '(("\\arraycolsep")
yuuji@23 1548 ("\\arrayrulewidth")
yuuji@23 1549 ("\\baselineskip")
yuuji@23 1550 ("\\columnsep")
yuuji@23 1551 ("\\columnseprule")
yuuji@23 1552 ("\\doublerulesep")
yuuji@23 1553 ("\\evensidemargin")
yuuji@23 1554 ("\\footheight")
yuuji@23 1555 ("\\footskip")
yuuji@23 1556 ("\\headheight")
yuuji@23 1557 ("\\headsep")
yuuji@23 1558 ("\\itemindent")
yuuji@23 1559 ("\\itemsep")
yuuji@23 1560 ("\\labelsep")
yuuji@23 1561 ("\\labelwidth")
yuuji@23 1562 ("\\leftmargin")
yuuji@23 1563 ("\\linewidth")
yuuji@23 1564 ("\\listparindent")
yuuji@23 1565 ("\\marginparsep")
yuuji@23 1566 ("\\marginparwidth")
yuuji@23 1567 ("\\mathindent")
yuuji@23 1568 ("\\oddsidemargin")
yuuji@23 1569 ("\\parindent")
yuuji@23 1570 ("\\parsep")
yuuji@23 1571 ("\\parskip")
yuuji@23 1572 ("\\partopsep")
yuuji@23 1573 ("\\rightmargin")
yuuji@23 1574 ("\\tabcolsep")
yuuji@23 1575 ("\\textheight")
yuuji@23 1576 ("\\textwidth")
yuuji@23 1577 ("\\topmargin")
yuuji@23 1578 ("\\topsep")
yuuji@23 1579 ("\\topskip")
yuuji@23 1580 )
yuuji@23 1581 "Alist of LaTeX style parameters.")
yuuji@23 1582 (defvar YaTeX:style-parameters-private nil
yuuji@23 1583 "*User definable alist of style parameters.")
yuuji@49 1584 (defvar YaTeX:style-parameters-local nil
yuuji@49 1585 "*User definable alist of local style parameters.")
yuuji@23 1586
yuuji@23 1587 (defvar YaTeX:length-history nil "Holds history of length.")
yuuji@51 1588 (put 'YaTeX:length-history 'no-default t)
yuuji@23 1589 (defun YaTeX::setlength (&optional argp)
yuuji@23 1590 "YaTeX add-in function for arguments of \\setlength."
yuuji@23 1591 (cond
yuuji@23 1592 ((equal 1 argp)
yuuji@49 1593 ;;(completing-read "Length variable: " YaTeX:style-parameters nil nil "\\")
yuuji@49 1594 (YaTeX-cplread-with-learning
yuuji@49 1595 "Length variable: "
yuuji@49 1596 'YaTeX:style-parameters-default
yuuji@49 1597 'YaTeX:style-parameters-private
yuuji@49 1598 'YaTeX:style-parameters-local
yuuji@49 1599 nil nil "\\")
yuuji@49 1600 )
yuuji@23 1601 ((equal 2 argp)
yuuji@69 1602 (read-string-with-history "Length: " nil 'YaTeX:length-history))))
yuuji@69 1603
yuuji@23 1604 (fset 'YaTeX::addtolength 'YaTeX::setlength)
yuuji@23 1605
yuuji@23 1606 (defun YaTeX::settowidth (&optional argp)
yuuji@23 1607 "YaTeX add-in function for arguments of \\settowidth."
yuuji@23 1608 (cond
yuuji@23 1609 ((equal 1 argp)
yuuji@49 1610 (YaTeX-cplread-with-learning
yuuji@49 1611 "Length variable: "
yuuji@49 1612 'YaTeX:style-parameters-default
yuuji@49 1613 'YaTeX:style-parameters-private
yuuji@49 1614 'YaTeX:style-parameters-local
yuuji@49 1615 nil nil "\\"))
yuuji@23 1616 ((equal 2 argp)
yuuji@69 1617 (read-string "Text: "))))
yuuji@69 1618
yuuji@23 1619 (defun YaTeX::newlength (&optional argp)
yuuji@23 1620 "YaTeX add-in function for arguments of \\newlength"
yuuji@23 1621 (cond
yuuji@23 1622 ((equal argp 1)
yuuji@23 1623 (let ((length (read-string "Length variable: " "\\")))
yuuji@49 1624 (if (string< "" length)
yuuji@49 1625 (YaTeX-update-table
yuuji@49 1626 (list length)
yuuji@49 1627 'YaTeX:style-parameters-default
yuuji@49 1628 'YaTeX:style-parameters-private
yuuji@49 1629 'YaTeX:style-parameters-local))
yuuji@69 1630 length))))
yuuji@23 1631
yuuji@23 1632 ;; \multicolumn's arguments
yuuji@23 1633 (defun YaTeX::multicolumn (&optional argp)
yuuji@23 1634 "YaTeX add-in function for arguments of \\multicolumn."
yuuji@23 1635 (cond
yuuji@23 1636 ((equal 1 argp)
yuuji@23 1637 (read-string "Number of columns: "))
yuuji@23 1638 ((equal 2 argp)
yuuji@79 1639 (YaTeX:read-oneof "|lrc" nil t))
yuuji@23 1640 ((equal 3 argp)
yuuji@69 1641 (read-string "Item: "))))
yuuji@23 1642
yuuji@49 1643 (defvar YaTeX:documentstyles-default
yuuji@49 1644 '(("article") ("jarticle") ("j-article")
yuuji@49 1645 ("book") ("jbook") ("j-book")
yuuji@49 1646 ("report") ("jreport") ("j-report")
yuuji@49 1647 ("letter") ("ascjletter"))
yuuji@49 1648 "List of LaTeX documentstyles.")
yuuji@49 1649 (defvar YaTeX:documentstyles-private nil
yuuji@49 1650 "*User defined list of LaTeX documentstyles.")
yuuji@49 1651 (defvar YaTeX:documentstyles-local nil
yuuji@49 1652 "*User defined list of local LaTeX documentstyles.")
yuuji@49 1653 (defvar YaTeX:documentstyle-options-default
yuuji@49 1654 '(("a4j") ("a5j") ("b4j") ("b5j")
yuuji@49 1655 ("twocolumn") ("jtwocolumn") ("epsf") ("epsfig") ("epsbox") ("nfig"))
yuuji@49 1656 "List of LaTeX documentstyle options.")
yuuji@49 1657 (defvar YaTeX:documentstyle-options-private nil
yuuji@49 1658 "*User defined list of LaTeX documentstyle options.")
yuuji@49 1659 (defvar YaTeX:documentstyle-options-local nil
yuuji@49 1660 "List of LaTeX local documentstyle options.")
yuuji@49 1661
yuuji@49 1662 (defun YaTeX:documentstyle ()
yuuji@49 1663 (let*((delim ",")
yuuji@49 1664 (dt (append YaTeX:documentstyle-options-local
yuuji@49 1665 YaTeX:documentstyle-options-private
yuuji@49 1666 YaTeX:documentstyle-options-default))
yuuji@49 1667 (minibuffer-completion-table dt)
yuuji@49 1668 (opt (read-from-minibuffer
yuuji@49 1669 "Style options ([opt1,opt2,...]): "
yuuji@51 1670 nil YaTeX-minibuffer-completion-map nil))
yuuji@49 1671 (substr opt) o)
yuuji@49 1672 (if (string< "" opt)
yuuji@49 1673 (progn
yuuji@49 1674 (while substr
yuuji@49 1675 (setq o (substring substr 0 (string-match delim substr)))
yuuji@49 1676 (or (assoc o dt)
yuuji@49 1677 (YaTeX-update-table
yuuji@49 1678 (list o)
yuuji@49 1679 'YaTeX:documentstyle-options-default
yuuji@49 1680 'YaTeX:documentstyle-options-private
yuuji@49 1681 'YaTeX:documentstyle-options-local))
yuuji@49 1682 (setq substr
yuuji@49 1683 (if (string-match delim substr)
yuuji@49 1684 (substring substr (1+ (string-match delim substr))))))
yuuji@49 1685 (concat "[" opt "]"))
yuuji@49 1686 "")))
yuuji@49 1687
yuuji@49 1688 (defun YaTeX::documentstyle (&optional argp)
yuuji@51 1689 "YaTeX add-in function for arguments of \\documentstyle."
yuuji@49 1690 (cond
yuuji@49 1691 ((equal argp 1)
yuuji@72 1692 (setq YaTeX-env-name "document")
yuuji@49 1693 (let ((sname
yuuji@49 1694 (YaTeX-cplread-with-learning
yuuji@49 1695 (format "Documentstyle (default %s): "
yuuji@49 1696 YaTeX-default-document-style)
yuuji@49 1697 'YaTeX:documentstyles-default
yuuji@49 1698 'YaTeX:documentstyles-private
yuuji@49 1699 'YaTeX:documentstyles-local)))
yuuji@49 1700 (if (string= "" sname) (setq sname YaTeX-default-document-style))
yuuji@69 1701 (setq YaTeX-default-document-style sname)))))
yuuji@49 1702
yuuji@80 1703 (defun YaTeX::include (argp &optional prompt)
yuuji@86 1704 "Read file name setting default directory to that of main file."
yuuji@80 1705 (cond
yuuji@80 1706 ((= argp 1)
yuuji@86 1707 (save-excursion
yuuji@86 1708 (YaTeX-visit-main t)
yuuji@86 1709 (let*((insert-default-directory)
yuuji@86 1710 (file (read-file-name (or prompt "Input file: ") "")))
yuuji@86 1711 (setq file (substring file 0 (string-match "\\.tex$" file))))))))
yuuji@80 1712
yuuji@80 1713 (fset 'YaTeX::input 'YaTeX::include)
yuuji@80 1714
yuuji@80 1715
yuuji@57 1716 ;;; -------------------- LaTeX2e stuff --------------------
yuuji@57 1717 (defvar YaTeX:documentclass-options-default
yuuji@70 1718 '(("a4paper") ("a5paper") ("b4paper") ("b5paper") ("10pt") ("11pt") ("12pt")
yuuji@57 1719 ("latterpaper") ("legalpaper") ("executivepaper") ("landscape")
yuuji@57 1720 ("oneside") ("twoside") ("draft") ("final") ("leqno") ("fleqn") ("openbib")
yuuji@70 1721 ("tombow") ("titlepage") ("notitlepage") ("dvips")
yuuji@175 1722 ("mingoth") ;for jsarticle
yuuji@57 1723 ("clock") ;for slides class only
yuuji@57 1724 )
yuuji@57 1725 "Default options list for documentclass")
yuuji@57 1726 (defvar YaTeX:documentclass-options-private nil
yuuji@57 1727 "*User defined options list for documentclass")
yuuji@57 1728 (defvar YaTeX:documentclass-options-local nil
yuuji@57 1729 "*User defined options list for local documentclass")
yuuji@57 1730
yuuji@57 1731 (defun YaTeX:documentclass ()
yuuji@57 1732 (let*((delim ",")
yuuji@57 1733 (dt (append YaTeX:documentclass-options-local
yuuji@57 1734 YaTeX:documentclass-options-private
yuuji@57 1735 YaTeX:documentclass-options-default))
yuuji@57 1736 (minibuffer-completion-table dt)
yuuji@57 1737 (opt (read-from-minibuffer
yuuji@57 1738 "Documentclass options ([opt1,opt2,...]): "
yuuji@57 1739 nil YaTeX-minibuffer-completion-map nil))
yuuji@57 1740 (substr opt) o)
yuuji@57 1741 (if (string< "" opt)
yuuji@57 1742 (progn
yuuji@57 1743 (while substr
yuuji@70 1744
yuuji@57 1745 (setq o (substring substr 0 (string-match delim substr)))
yuuji@57 1746 (or (assoc o dt)
yuuji@57 1747 (YaTeX-update-table
yuuji@57 1748 (list o)
yuuji@57 1749 'YaTeX:documentclass-options-default
yuuji@57 1750 'YaTeX:documentclass-options-private
yuuji@57 1751 'YaTeX:documentclass-options-local))
yuuji@57 1752 (setq substr
yuuji@57 1753 (if (string-match delim substr)
yuuji@57 1754 (substring substr (1+ (string-match delim substr))))))
yuuji@57 1755 (concat "[" opt "]"))
yuuji@57 1756 "")))
yuuji@57 1757
yuuji@57 1758 (defvar YaTeX:documentclasses-default
yuuji@57 1759 '(("article") ("jarticle") ("report") ("jreport") ("book") ("jbook")
yuuji@175 1760 ("jsarticle") ("jsbook")
yuuji@57 1761 ("j-article") ("j-report") ("j-book")
yuuji@57 1762 ("letter") ("slides") ("ltxdoc") ("ltxguide") ("ltnews") ("proc"))
yuuji@57 1763 "Default documentclass alist")
yuuji@57 1764 (defvar YaTeX:documentclasses-private nil
yuuji@57 1765 "*User defined documentclass alist")
yuuji@57 1766 (defvar YaTeX:documentclasses-local nil
yuuji@57 1767 "*User defined local documentclass alist")
yuuji@57 1768 (defvar YaTeX-default-documentclass (if YaTeX-japan "jarticle" "article")
yuuji@57 1769 "*Default documentclass")
yuuji@57 1770
yuuji@57 1771 (defun YaTeX::documentclass (&optional argp)
yuuji@57 1772 (cond
yuuji@57 1773 ((equal argp 1)
yuuji@72 1774 (setq YaTeX-env-name "document")
yuuji@57 1775 (let ((sname
yuuji@57 1776 (YaTeX-cplread-with-learning
yuuji@57 1777 (format "Documentclass (default %s): " YaTeX-default-documentclass)
yuuji@57 1778 'YaTeX:documentclasses-default
yuuji@57 1779 'YaTeX:documentclasses-private
yuuji@57 1780 'YaTeX:documentclasses-local)))
yuuji@57 1781 (if (string= "" sname) (setq sname YaTeX-default-documentclass))
yuuji@57 1782 (setq YaTeX-default-documentclass sname)))))
yuuji@57 1783
yuuji@70 1784 (defvar YaTeX:latex2e-named-color-alist
yuuji@70 1785 '(("GreenYellow") ("Yellow") ("Goldenrod") ("Dandelion") ("Apricot")
yuuji@70 1786 ("Peach") ("Melon") ("YellowOrange") ("Orange") ("BurntOrange")
yuuji@70 1787 ("Bittersweet") ("RedOrange") ("Mahogany") ("Maroon") ("BrickRed")
yuuji@70 1788 ("Red") ("OrangeRed") ("RubineRed") ("WildStrawberry") ("Salmon")
yuuji@70 1789 ("CarnationPink") ("Magenta") ("VioletRed") ("Rhodamine") ("Mulberry")
yuuji@70 1790 ("RedViolet") ("Fuchsia") ("Lavender") ("Thistle") ("Orchid")("DarkOrchid")
yuuji@70 1791 ("Purple") ("Plum") ("Violet") ("RoyalPurple") ("BlueViolet")
yuuji@70 1792 ("Periwinkle") ("CadetBlue") ("CornflowerBlue") ("MidnightBlue")
yuuji@70 1793 ("NavyBlue") ("RoyalBlue") ("Blue") ("Cerulean") ("Cyan") ("ProcessBlue")
yuuji@70 1794 ("SkyBlue") ("Turquoise") ("TealBlue") ("Aquamarine") ("BlueGreen")
yuuji@70 1795 ("Emerald") ("JungleGreen") ("SeaGreen") ("Green") ("ForestGreen")
yuuji@70 1796 ("PineGreen") ("LimeGreen") ("YellowGreen") ("SpringGreen") ("OliveGreen")
yuuji@70 1797 ("RawSienna") ("Sepia") ("Brown") ("Tan") ("Gray") ("Black") ("White"))
yuuji@141 1798 "Colors defined in $TEXMF/tex/plain/dvips/colordvi.tex")
yuuji@70 1799
yuuji@70 1800 (defvar YaTeX:latex2e-basic-color-alist
yuuji@70 1801 '(("black") ("white") ("red") ("blue") ("yellow") ("green") ("cyan")
yuuji@70 1802 ("magenta"))
yuuji@70 1803 "Basic colors")
yuuji@70 1804
yuuji@70 1805 (defun YaTeX:textcolor ()
yuuji@70 1806 "Add-in for \\color's option"
yuuji@70 1807 (if (y-or-n-p "Use `named' color? ")
yuuji@70 1808 "[named]"))
yuuji@70 1809
yuuji@70 1810 (defun YaTeX::color-completing-read (prompt)
yuuji@70 1811 (let ((completion-ignore-case t)
yuuji@70 1812 (namedp (save-excursion
yuuji@70 1813 (skip-chars-backward "^\n\\[\\\\")
yuuji@70 1814 (looking-at "named"))))
yuuji@70 1815 (completing-read
yuuji@70 1816 prompt
yuuji@70 1817 (if namedp
yuuji@70 1818 YaTeX:latex2e-named-color-alist
yuuji@70 1819 YaTeX:latex2e-basic-color-alist)
yuuji@70 1820 nil t)))
yuuji@70 1821
yuuji@70 1822 (defun YaTeX::textcolor (argp)
yuuji@70 1823 "Add-in for \\color's argument"
yuuji@70 1824 (cond
yuuji@70 1825 ((= argp 1) (YaTeX::color-completing-read "Color: "))
yuuji@70 1826 ((= argp 2) (read-string "Colored string: "))))
yuuji@70 1827
yuuji@70 1828 (fset 'YaTeX:color 'YaTeX:textcolor)
yuuji@70 1829 (fset 'YaTeX::color 'YaTeX::textcolor)
yuuji@70 1830 (fset 'YaTeX:colorbox 'YaTeX:textcolor)
yuuji@70 1831 (fset 'YaTeX::colorbox 'YaTeX::textcolor)
yuuji@70 1832 (fset 'YaTeX:fcolorbox 'YaTeX:textcolor)
yuuji@80 1833 (fset 'YaTeX:pagecolor 'YaTeX:textcolor)
yuuji@80 1834 (fset 'YaTeX::pagecolor 'YaTeX::textcolor)
yuuji@70 1835
yuuji@70 1836 (defun YaTeX::fcolorbox (argp)
yuuji@70 1837 (cond
yuuji@70 1838 ((= argp 1) (YaTeX::color-completing-read "Frame color: "))
yuuji@70 1839 ((= argp 2) (YaTeX::color-completing-read "Inner color: "))
yuuji@70 1840 ((= argp 3) (read-string "Colored string: "))))
yuuji@70 1841
yuuji@70 1842 (defun YaTeX:scalebox ()
yuuji@80 1843 "Add-in for \\scalebox"
yuuji@80 1844 (let ((vmag (read-string
yuuji@80 1845 (if YaTeX-japan "倍率(負で反転): "
yuuji@80 1846 "Magnification(Negative for flipped): ")))
yuuji@80 1847 (hmag (read-string (if YaTeX-japan "縦倍率(省略可): "
yuuji@80 1848 "Vertical magnification(Optional): "))))
yuuji@70 1849 (if (and hmag (string< "" hmag))
yuuji@70 1850 (format "{%s}[%s]" vmag hmag)
yuuji@70 1851 (format "{%s}" vmag))))
yuuji@70 1852
yuuji@80 1853 (defun YaTeX:rotatebox ()
yuuji@80 1854 "Optional argument add-in for \\rotatebox"
yuuji@80 1855 (message "Rotate origin? (N)one (O)rigin (X)-Y: ")
yuuji@80 1856 (let ((c (read-char)) r (defx "x=mm") x (defy "y=mm") y something)
yuuji@80 1857 (cond
yuuji@80 1858 ((memq c '(?O ?o))
yuuji@80 1859 (if (string< "" (setq r (YaTeX:read-oneof "htbpB")))
yuuji@80 1860 (concat "[origin=" r "]")))
yuuji@80 1861 ((memq c '(?X ?x ?Y ?y))
yuuji@80 1862 (setq r (read-string "" (if YaTeX-emacs-19 (cons defx 3) defx))
yuuji@80 1863 x (if (string< "x=" r) r)
yuuji@80 1864 r (read-string "" (if YaTeX-emacs-19 (cons defy 3) defy))
yuuji@80 1865 y (if (string< "y=" r) r)
yuuji@80 1866 something (or x y))
yuuji@80 1867 (format "%s%s%s%s%s"
yuuji@80 1868 (if something "[" "")
yuuji@80 1869 (if x x "")
yuuji@80 1870 (if (and x y) "," "")
yuuji@80 1871 (if y y "")
yuuji@80 1872 (if something "]" ""))))))
yuuji@80 1873
yuuji@80 1874 (defun YaTeX::rotatebox (argp)
yuuji@80 1875 "Argument add-in for \\rotatebox"
yuuji@80 1876 (cond
yuuji@80 1877 ((= argp 1)
yuuji@80 1878 (read-string (if YaTeX-japan "回転角(度; 左回り): "
yuuji@80 1879 "Angle in degree(unclockwise): ")))
yuuji@80 1880 ((= argp 2)
yuuji@80 1881 (read-string (if YaTeX-japan "テキスト: " "Text: ")))))
yuuji@80 1882
yuuji@73 1883 (defun YaTeX:includegraphics ()
yuuji@73 1884 "Add-in for \\includegraphics's option"
yuuji@73 1885 (let (width height (scale "") angle str)
yuuji@73 1886 (setq width (read-string "Width: ")
yuuji@73 1887 height (read-string "Height: "))
yuuji@73 1888 (or (string< width "") (string< "" height)
yuuji@73 1889 (setq scale (read-string "Scale: ")))
yuuji@73 1890 (setq angle (read-string "Angle(0-359): "))
yuuji@73 1891 (setq str
yuuji@73 1892 (mapconcat
yuuji@73 1893 'concat
yuuji@73 1894 (delq nil
yuuji@73 1895 (mapcar '(lambda (s)
yuuji@73 1896 (and (stringp (symbol-value s))
yuuji@73 1897 (string< "" (symbol-value s))
yuuji@73 1898 (format "%s=%s" s (symbol-value s))))
yuuji@73 1899 '(width height scale angle)))
yuuji@73 1900 ","))
yuuji@73 1901 (if (string= "" str) ""
yuuji@73 1902 (concat "[" str "]"))))
yuuji@73 1903
yuuji@70 1904 (defun YaTeX::includegraphics (argp)
yuuji@70 1905 "Add-in for \\includegraphics"
yuuji@80 1906 (YaTeX::include argp "Image File: "))
yuuji@70 1907
yuuji@86 1908 (defun YaTeX::verbfile (argp)
yuuji@86 1909 "Add-in for \\verbfile"
yuuji@86 1910 (YaTeX::include argp "Virbatim File: "))
yuuji@86 1911
yuuji@68 1912 (defun YaTeX:caption ()
yuuji@72 1913 (setq YaTeX-section-name "label")
yuuji@68 1914 nil)
yuuji@68 1915
yuuji@80 1916
yuuji@79 1917 (defvar YaTeX::usepackage-alist-default
yuuji@79 1918 '(("version") ("plext") ("url") ("fancybox") ("pifont") ("longtable")
yuuji@79 1919 ("ascmac") ("bm") ("graphics") ("graphicx") ("alltt") ("misc") ("eclbkbox")
yuuji@79 1920 ("amsmath") ("amssymb") ("xymtex") ("chemist")
yuuji@79 1921 ("a4j") ("array") ("epsf") ("color") ("epsfig") ("floatfig")
yuuji@80 1922 ("landscape") ("path") ("supertabular") ("twocolumn")
yuuji@80 1923 ("latexsym") ("times") ("makeidx"))
yuuji@80 1924 "Default completion table for arguments of \\usepackage")
yuuji@79 1925
yuuji@79 1926 (defvar YaTeX::usepackage-alist-private nil
yuuji@79 1927 "*Private completion list of the argument for usepackage")
yuuji@79 1928
yuuji@79 1929 (defvar YaTeX::usepackage-alist-local nil
yuuji@79 1930 "Directory local completion list of the argument for usepackage")
yuuji@79 1931
yuuji@79 1932 (defun YaTeX::usepackage (&optional argp)
yuuji@79 1933 (cond
yuuji@79 1934 ((equal argp 1)
yuuji@79 1935 (setq YaTeX-env-name "document")
yuuji@80 1936 (let ((minibuffer-local-completion-map YaTeX-minibuffer-completion-map)
yuuji@80 1937 (delim ","))
yuuji@80 1938 (YaTeX-cplread-with-learning
yuuji@80 1939 (if YaTeX-japan "Use package(カンマで区切ってOK): "
yuuji@80 1940 "Use package(delimitable by comma): ")
yuuji@80 1941 'YaTeX::usepackage-alist-default
yuuji@80 1942 'YaTeX::usepackage-alist-private
yuuji@80 1943 'YaTeX::usepackage-alist-local)))))
yuuji@79 1944
yuuji@79 1945 (defun YaTeX::mask (argp)
yuuji@79 1946 (cond
yuuji@79 1947 ((equal argp 1)
yuuji@79 1948 (read-string "String: "))
yuuji@79 1949 ((equal argp 2)
yuuji@79 1950 (let (c)
yuuji@79 1951 (while (not (memq c '(?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K)))
yuuji@79 1952 (message "Mask type(A..K): ")
yuuji@79 1953 (setq c (upcase (read-char))))
yuuji@79 1954 (format "%c" c)))))
yuuji@79 1955
yuuji@79 1956 (defun YaTeX::maskbox (argp)
yuuji@79 1957 (cond
yuuji@79 1958 ((equal argp 1)
yuuji@79 1959 (read-string "Width: "))
yuuji@79 1960 ((equal argp 2)
yuuji@79 1961 (read-string "Height: "))
yuuji@79 1962 ((equal argp 3)
yuuji@79 1963 (let (c)
yuuji@79 1964 (while (not (memq c '(?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K)))
yuuji@79 1965 (message "Mask type(A..K): ")
yuuji@79 1966 (setq c (upcase (read-char))))
yuuji@79 1967 (format "%c" c)))
yuuji@79 1968 ((equal argp 4)
yuuji@79 1969 (YaTeX:read-oneof "lcr" 'quick))
yuuji@79 1970 ((equal argp 5)
yuuji@80 1971 (read-string "String: "))))
yuuji@80 1972
yuuji@80 1973 (defun YaTeX::textcircled (argp)
yuuji@80 1974 (cond
yuuji@80 1975 ((equal argp 1)
yuuji@80 1976 (let ((char (read-string "Circled char: "))
yuuji@80 1977 (left "") (right "") c)
yuuji@80 1978 (setq c (read-char
yuuji@80 1979 "Enclose also with (s)mall (t)iny s(C)riptsize (N)one:"))
yuuji@80 1980 (cond
yuuji@80 1981 ((memq c '(?s ?S)) (setq left "{\\small " right "}"))
yuuji@80 1982 ((memq c '(?t ?T)) (setq left "{\\tiny " right "}"))
yuuji@80 1983 ((memq c '(?c ?C)) (setq left "{\\scriptsize " right "}")))
yuuji@80 1984 (format "%s%s%s" left char right)))))
yuuji@79 1985
yuuji@68 1986 ;;; -------------------- math-mode stuff --------------------
yuuji@68 1987 (defun YaTeX::tilde (&optional pos)
yuuji@68 1988 "For accent macros in mathmode"
yuuji@68 1989 (cond
yuuji@68 1990 ((equal pos 1)
yuuji@68 1991 (message "Put accent on variable: ")
yuuji@68 1992 (let ((v (char-to-string (read-char))) (case-fold-search nil))
yuuji@68 1993 (message "")
yuuji@68 1994 (cond
yuuji@68 1995 ((string-match "i\\|j" v)
yuuji@68 1996 (concat "\\" v "math"))
yuuji@68 1997 ((string-match "[\r\n\t ]" v)
yuuji@68 1998 "")
yuuji@68 1999 (t v))))
yuuji@68 2000 (nil "")))
yuuji@68 2001
yuuji@68 2002 (fset 'YaTeX::hat 'YaTeX::tilde)
yuuji@68 2003 (fset 'YaTeX::check 'YaTeX::tilde)
yuuji@68 2004 (fset 'YaTeX::bar 'YaTeX::tilde)
yuuji@68 2005 (fset 'YaTeX::dot 'YaTeX::tilde)
yuuji@68 2006 (fset 'YaTeX::ddot 'YaTeX::tilde)
yuuji@68 2007 (fset 'YaTeX::vec 'YaTeX::tilde)
yuuji@68 2008
yuuji@68 2009 (defun YaTeX::widetilde (&optional pos)
yuuji@68 2010 "For multichar accent macros in mathmode"
yuuji@68 2011 (cond
yuuji@68 2012 ((equal pos 1)
yuuji@68 2013 (let ((m "Put over chars[%s ]: ") v v2)
yuuji@68 2014 (message m " ")
yuuji@68 2015 (setq v (char-to-string (read-char)))
yuuji@68 2016 (message "")
yuuji@68 2017 (if (string-match "[\r\n\t ]" v)
yuuji@68 2018 ""
yuuji@68 2019 (message m v)
yuuji@68 2020 (setq v2 (char-to-string (read-char)))
yuuji@68 2021 (message "")
yuuji@68 2022 (if (string-match "[\r\n\t ]" v2)
yuuji@68 2023 v
yuuji@68 2024 (concat v v2)))))
yuuji@68 2025 (nil "")))
yuuji@68 2026
yuuji@68 2027 (fset 'YaTeX::widehat 'YaTeX::widetilde)
yuuji@68 2028 (fset 'YaTeX::overline 'YaTeX::widetilde)
yuuji@68 2029 (fset 'YaTeX::overrightarrow 'YaTeX::widetilde)
yuuji@68 2030
yuuji@79 2031 ;
yuuji@79 2032 ; for \frac{}{} region
yuuji@79 2033 (defun YaTeX::frac-region (beg end)
yuuji@79 2034 (if (catch 'done
yuuji@79 2035 (while (re-search-forward "\\s *\\(\\\\over\\|/\\)\\s *" end t)
yuuji@79 2036 (goto-char (match-beginning 0))
yuuji@79 2037 (if (y-or-n-p
yuuji@79 2038 (format "Replace this `%s' with `}{'" (YaTeX-match-string 0)))
yuuji@79 2039 (throw 'done t))
yuuji@79 2040 (goto-char (match-end 0))))
yuuji@79 2041 (let (p (b0 (match-beginning 0)) e0)
yuuji@79 2042 (replace-match "}{")
yuuji@79 2043 (setq e0 (point))
yuuji@79 2044 (save-restriction
yuuji@79 2045 (narrow-to-region beg end)
yuuji@79 2046 (goto-char e0)
yuuji@79 2047 (skip-chars-forward " \t")
yuuji@79 2048 (setq p (point))
yuuji@79 2049 (YaTeX-goto-corresponding-paren)
yuuji@79 2050 (forward-char 1)
yuuji@79 2051 (skip-chars-forward " \t\r\n")
yuuji@79 2052 (if (= end (1+ (point)))
yuuji@79 2053 (progn
yuuji@79 2054 (goto-char p)
yuuji@79 2055 (if (looking-at "\\\\") (forward-char 1))
yuuji@79 2056 (YaTeX-kill-paren nil)))
yuuji@79 2057 (goto-char beg)
yuuji@79 2058 (skip-chars-forward " \t")
yuuji@79 2059 (setq p (point))
yuuji@79 2060 (YaTeX-goto-corresponding-paren)
yuuji@79 2061 (forward-char 1)
yuuji@79 2062 (skip-chars-forward " \t\r\n")
yuuji@79 2063 (if (>= (point) b0)
yuuji@79 2064 (progn
yuuji@79 2065 (goto-char p)
yuuji@79 2066 (if (looking-at "\\\\") (forward-char 1))
yuuji@79 2067 (YaTeX-kill-paren nil))))))
yuuji@79 2068 (message ""))
yuuji@68 2069
yuuji@80 2070 (defun YaTeX::DeclareMathOperator (argp)
yuuji@80 2071 (cond
yuuji@80 2072 ((equal argp 1)
yuuji@80 2073 (read-string "Operator: " "\\"))))
yuuji@80 2074
yuuji@68 2075 ;;;
yuuji@68 2076 ;; Add-in functions for large-type command.
yuuji@68 2077 ;;;
yuuji@68 2078 (defun YaTeX:em ()
yuuji@68 2079 (cond
yuuji@68 2080 ((eq YaTeX-current-completion-type 'large) "\\/")
yuuji@68 2081 (t nil)))
yuuji@68 2082 (fset 'YaTeX:it 'YaTeX:em)
yuuji@68 2083
yuuji@23 2084 ;;; -------------------- End of yatexadd --------------------
yuuji@23 2085 (provide 'yatexadd)
yuuji@72 2086 ; Local variables:
yuuji@72 2087 ; fill-prefix: ";;; "
yuuji@72 2088 ; paragraph-start: "^$\\| \\|;;;$"
yuuji@72 2089 ; paragraph-separate: "^$\\| \\|;;;$"
yuuji@80 2090 ; coding: sjis
yuuji@72 2091 ; End: