annotate yatexadd.el @ 364:d69fd7b1ac4d dev yatex-1.78

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

yatex.org