Mercurial > emacs
annotate lisp/textmodes/reftex-vars.el @ 29382:5558cf965f4d
Rewritten to use define-minor-mode.
(autoarg-kp-digits, autoarg-kp-mode-map): New variable.
(autoarg-kp-mode, autoarg-kp-digit-argument): New command.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 02 Jun 2000 13:07:26 +0000 |
parents | 0b645a4a64fa |
children | 31536c6cf2e3 |
rev | line source |
---|---|
25280 | 1 ;;; reftex-vars.el - Configuration variables for RefTeX |
27192
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
2 ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
27035 | 3 |
4 ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | |
27604 | 5 ;; Version: 4.11 |
27192
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
6 ;; |
27035 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
25280 | 24 |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
25 (eval-when-compile (require 'cl)) |
25280 | 26 (provide 'reftex-vars) |
27 | |
28 ;; Define the two constants which are needed during compilation | |
29 | |
30 (eval-and-compile | |
31 (defconst reftex-label-alist-builtin | |
32 '( | |
33 ;; Some aliases, mostly for backward compatibility | |
34 (Sideways "Alias for -->rotating" (rotating)) | |
35 (AMSTeX "amsmath with eqref macro" | |
36 ((nil ?e nil "~\\eqref{%s}") | |
37 amsmath)) | |
38 | |
39 ;; Individual package defaults | |
40 (amsmath "AMS-LaTeX math environments" | |
41 (("align" ?e nil nil eqnarray-like) | |
42 ("gather" ?e nil nil eqnarray-like) | |
43 ("multline" ?e nil nil t) | |
44 ("flalign" ?e nil nil eqnarray-like) | |
45 ("alignat" ?e nil nil alignat-like) | |
46 ("xalignat" ?e nil nil alignat-like) | |
47 ("xxalignat" ?e nil nil alignat-like) | |
48 ("subequations" ?e nil nil t))) | |
49 | |
50 (endnotes "The \\endnote macro" | |
51 (("\\endnote[]{}" ?N "en:" "~\\ref{%s}" 2 | |
52 (regexp "endnotes?" "notes?" "Anmerkung\\(en\\)?" "Anm\\.")))) | |
53 | |
54 (fancybox "The Beqnarray environment" | |
55 (("Beqnarray" ?e nil nil eqnarray-like))) | |
56 | |
57 (floatfig "The floatingfigure environment" | |
58 (("floatingfigure" ?f nil nil caption))) | |
59 | |
60 (longtable "The longtable environment" | |
61 (("longtable" ?t nil nil caption))) | |
62 | |
63 (picinpar "The figwindow and tabwindow environments" | |
64 (("figwindow" ?f nil nil 1) | |
65 ("tabwindow" ?f nil nil 1))) | |
66 | |
67 (rotating "Sidewaysfigure and table" | |
68 (("sidewaysfigure" ?f nil nil caption) | |
69 ("sidewaystable" ?t nil nil caption))) | |
70 | |
71 (sidecap "CSfigure and SCtable" | |
72 (("SCfigure" ?f nil nil caption) | |
73 ("SCtable" ?t nil nil caption))) | |
74 | |
75 (subfigure "Subfigure environments/macro" | |
76 (("subfigure" ?f nil nil caption) | |
77 ("subfigure*" ?f nil nil caption) | |
78 ("\\subfigure[]{}" ?f nil nil 1))) | |
79 | |
80 (supertab "Supertabular environment" | |
81 (("supertabular" ?t nil nil "\\tablecaption{"))) | |
82 | |
83 (wrapfig "The wrapfigure environment" | |
84 (("wrapfigure" ?f nil nil caption))) | |
85 | |
86 ;; The LaTeX core stuff | |
87 (LaTeX "LaTeX default environments" | |
88 (("section" ?s "%S" "~\\ref{%s}" (nil . t) | |
89 (regexp "parts?" "chapters?" "chap\\." "sections?" "sect?\\." | |
90 "paragraphs?" "par\\." | |
91 "\\\\S" "\247" "Teile?" "Kapitel" "Kap\\." "Abschnitte?" | |
92 "appendi\\(x\\|ces\\)" "App\\." "Anh\"?ange?" "Anh\\.")) | |
93 | |
94 ("enumerate" ?i "item:" "~\\ref{%s}" item | |
95 (regexp "items?" "Punkte?")) | |
96 | |
97 ("equation" ?e "eq:" "~(\\ref{%s})" t | |
98 (regexp "equations?" "eqs?\\." "eqn\\." "Gleichung\\(en\\)?" "Gl\\.")) | |
99 ("eqnarray" ?e "eq:" nil eqnarray-like) | |
100 | |
101 ("figure" ?f "fig:" "~\\ref{%s}" caption | |
102 (regexp "figure?[sn]?" "figs?\\." "Abbildung\\(en\\)?" "Abb\\.")) | |
103 ("figure*" ?f nil nil caption) | |
104 | |
105 ("table" ?t "tab:" "~\\ref{%s}" caption | |
106 (regexp "tables?" "tab\\." "Tabellen?")) | |
107 ("table*" ?t nil nil caption) | |
108 | |
109 ("\\footnote[]{}" ?n "fn:" "~\\ref{%s}" 2 | |
110 (regexp "footnotes?" "Fussnoten?")) | |
111 | |
112 ("any" ?\ " " "~\\ref{%s}" nil) | |
113 | |
114 ;; The label macro is hard coded, but it *could* be defined like this: | |
115 ;;("\\label{*}" nil nil nil nil) | |
116 )) | |
117 | |
118 ) | |
119 "The default label environment descriptions. | |
120 Lower-case symbols correspond to a style file of the same name in the LaTeX | |
121 distribution. Mixed-case symbols are convenience aliases.") | |
122 | |
123 (defconst reftex-cite-format-builtin | |
124 '((default "Default macro \\cite{%l}" | |
125 "\\cite{%l}") | |
126 (natbib "The Natbib package" | |
127 ((?\C-m . "\\cite{%l}") | |
128 (?t . "\\citet{%l}") | |
129 (?T . "\\citet*{%l}") | |
130 (?p . "\\citep{%l}") | |
131 (?P . "\\citep*{%l}") | |
132 (?e . "\\citep[e.g.][]{%l}") | |
133 (?s . "\\citep[see][]{%l}") | |
134 (?a . "\\citeauthor{%l}") | |
135 (?A . "\\citeauthor*{%l}") | |
136 (?y . "\\citeyear{%l}"))) | |
137 (harvard "The Harvard package" | |
138 ((?\C-m . "\\cite{%l}") | |
139 (?p . "\\cite{%l}") | |
140 (?t . "\\citeasnoun{%l}") | |
141 (?n . "\\citeasnoun{%l}") | |
142 (?s . "\\possessivecite{%l}") | |
143 (?e . "\\citeaffixed{%l}{?}") | |
144 (?y . "\\citeyear{%l}") | |
145 (?a . "\\citename{%l}"))) | |
146 (chicago "The Chicago package" | |
147 ((?\C-m . "\\cite{%l}") | |
148 (?t . "\\citeN{%l}") | |
149 (?T . "\\shortciteN{%l}") | |
150 (?p . "\\cite{%l}") | |
151 (?P . "\\shortcite{%l}") | |
152 (?a . "\\citeA{%l}") | |
153 (?A . "\\shortciteA{%l}") | |
154 (?y . "\\citeyear{%l}"))) | |
155 (astron "The Astron package" | |
156 ((?\C-m . "\\cite{%l}") | |
157 (?p . "\\cite{%l}" ) | |
158 (?t . "%2a (\\cite{%l})"))) | |
159 (author-year "Do-it-yourself Author-year" | |
160 ((?\C-m . "\\cite{%l}") | |
161 (?t . "%2a (%y)\\nocite{%l}") | |
162 (?p . "(%2a %y\\nocite{%l})"))) | |
163 (locally "Full info in parenthesis" | |
164 "(%2a %y, %j %v, %P, %e: %b, %u, %s %<)") | |
165 ) | |
166 "Builtin versions of the citation format. | |
167 The following conventions are valid for all alist entries: | |
168 `?\C-m' should always point to a straight \\cite{%l} macro. | |
169 `?t' should point to a textual citation (citation as a noun). | |
170 `?p' should point to a parenthetical citation.") | |
171 | |
172 (defconst reftex-index-macros-builtin | |
173 '((default "Default \\index and \\glossary macros" | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
174 (("\\index{*}" "idx" ?i "" nil t) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
175 ("\\glossary{*}" "glo" ?g "" nil t))) |
25280 | 176 (multind "The multind.sty package" |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
177 (("\\index{}{*}" 1 ?i "" nil t))) |
25280 | 178 (index "The index.sty package" |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
179 (("\\index[]{*}" 1 ?i "" nil t) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
180 ("\\index*[]{*}" 1 ?I "" nil nil))) |
25280 | 181 (Index-Shortcut "index.sty with \\shortindexingon" |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
182 (("\\index[]{*}" 1 ?i "" nil t) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
183 ("\\index*[]{*}" 1 ?I "" nil nil) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
184 ("^[]{*}" 1 ?^ "" texmathp t) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
185 ("_[]{*}" 1 ?_ "" texmathp nil)))) |
25280 | 186 "Builtin stuff for reftex-index-macros. |
187 Lower-case symbols correspond to a style file of the same name in the LaTeX | |
188 distribution. Mixed-case symbols are convenience aliases.") | |
189 ) | |
190 | |
191 ;; Configuration Variables and User Options for RefTeX ------------------ | |
192 | |
193 (defgroup reftex nil | |
194 "LaTeX label and citation support." | |
195 :tag "RefTeX" | |
196 :link '(url-link :tag "Home Page" | |
197 "http://strw.leidenuniv.nl/~dominik/Tools/") | |
198 :link '(emacs-commentary-link :tag "Commentary in reftex.el" "reftex.el") | |
199 :link '(custom-manual "(reftex)Top") | |
200 :prefix "reftex-" | |
201 :group 'tex) | |
202 | |
203 ;; Table of contents configuration -------------------------------------- | |
204 | |
205 (defgroup reftex-table-of-contents-browser nil | |
206 "A multifile table of contents browser." | |
207 :group 'reftex) | |
208 | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
209 (defcustom reftex-toc-max-level 100 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
210 "*The maximum level of toc entries which will be included in the TOC. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
211 Section headings with a bigger level will be ignored. In RefTeX, chapters |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
212 are level 1, sections are level 2 etc. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
213 This variable can be changed from within the *toc* buffer with the `t' key." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
214 :group 'reftex-table-of-contents-browser |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
215 :type 'integer) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
216 |
25280 | 217 (defcustom reftex-toc-keep-other-windows t |
218 "*Non-nil means, split the selected window to display the *toc* buffer. | |
219 This helps to keep the window configuration, but makes the *toc* small. | |
220 When nil, all other windows except the selected one will be deleted, so | |
221 that the *toc* window fills half the frame." | |
222 :group 'reftex-table-of-contents-browser | |
223 :type 'boolean) | |
224 | |
225 (defcustom reftex-toc-include-file-boundaries nil | |
226 "*Non-nil means, include file boundaries in *toc* buffer. | |
227 This flag can be toggled from within the *toc* buffer with the `F' key." | |
228 :group 'reftex-table-of-contents-browser | |
229 :type 'boolean) | |
230 | |
231 (defcustom reftex-toc-include-labels nil | |
232 "*Non-nil means, include labels in *toc* buffer. | |
233 This flag can be toggled from within the *toc* buffer with the `l' key." | |
234 :group 'reftex-table-of-contents-browser | |
235 :type 'boolean) | |
236 | |
237 (defcustom reftex-toc-include-index-entries nil | |
238 "*Non-nil means, include index entries in *toc* buffer. | |
239 This flag can be toggled from within the *toc* buffer with the `i' key." | |
240 :group 'reftex-table-of-contents-browser | |
241 :type 'boolean) | |
242 | |
243 (defcustom reftex-toc-include-context nil | |
244 "*Non-nil means, include context with labels in the *toc* buffer. | |
245 Context will only be shown when labels are visible as well. | |
246 This flag can be toggled from within the *toc* buffer with the `c' key." | |
247 :group 'reftex-table-of-contents-browser | |
248 :type 'boolean) | |
249 | |
250 (defcustom reftex-toc-follow-mode nil | |
251 "*Non-nil means, point in *toc* buffer will cause other window to follow. | |
252 The other window will show the corresponding part of the document. | |
253 This flag can be toggled from within the *toc* buffer with the `f' key." | |
254 :group 'reftex-table-of-contents-browser | |
255 :type 'boolean) | |
256 | |
257 (defcustom reftex-revisit-to-follow nil | |
258 "*Non-nil means, follow-mode will revisit files if necessary. | |
259 When nil, follow-mode will be suspended for stuff in unvisited files." | |
260 :group 'reftex-table-of-contents-browser | |
261 :group 'reftex-referencing-labels | |
262 :type 'boolean) | |
263 | |
264 (defcustom reftex-toc-mode-hook nil | |
265 "Mode hook for reftex-toc-mode." | |
266 :group 'reftex-table-of-contents-browser | |
267 :type 'hook) | |
268 | |
269 ;; Label Support Configuration | |
270 | |
271 (defgroup reftex-label-support nil | |
272 "Support for creation, insertion and referencing of labels in LaTeX." | |
273 :group 'reftex) | |
274 | |
275 (defgroup reftex-defining-label-environments nil | |
276 "Definition of environments and macros to do with label." | |
277 :group 'reftex-label-support) | |
278 | |
279 (defcustom reftex-default-label-alist-entries | |
280 '(amsmath endnotes fancybox floatfig longtable picinpar | |
281 rotating sidecap subfigure supertab wrapfig LaTeX) | |
282 "Default label alist specifications. LaTeX should always be the last entry. | |
283 The value of this variable is a list of symbols with associations in the | |
284 constant `reftex-label-alist-builtin'. Check that constant for a full list | |
285 of options." | |
286 :group 'reftex-defining-label-environments | |
287 :set 'reftex-set-dirty | |
288 :type `(set | |
289 :indent 4 | |
290 :inline t | |
291 :greedy t | |
292 ,@(mapcar | |
293 (lambda (x) | |
294 (list 'const :tag (concat (symbol-name (nth 0 x)) | |
295 ": " (nth 1 x)) | |
296 (nth 0 x))) | |
297 reftex-label-alist-builtin))) | |
298 | |
299 (defcustom reftex-label-alist nil | |
300 "Alist with information on environments for \\label-\\ref use. | |
301 | |
302 This docstring is easier to understand after reading the configuration | |
303 examples in `reftex.el'. Looking at the builtin defaults in the constant | |
304 `reftex-label-alist-builtin' may also be instructive. | |
305 | |
306 Set this variable to define additions and changes to the default. The only | |
307 things you MUST NOT change is that `?s' is the type indicator for section | |
308 labels, and SPC for the `any' label type. These are hard-coded at other | |
309 places in the code. | |
310 | |
311 The value of the variable must be a list of items. Each item is a list | |
312 itself and has the following structure: | |
313 | |
314 (ENV-OR-MACRO TYPE-KEY LABEL-PREFIX REFERENCE-FORMAT CONTEXT-METHOD | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
315 (MAGIC-WORD ... ) TOC-LEVEL) |
25280 | 316 |
317 Each list entry describes either an environment carrying a counter for use | |
318 with \\label and \\ref, or a LaTeX macro defining a label as (or inside) | |
319 one of its arguments. The elements of each list entry are: | |
320 | |
321 ENV-OR-MACRO | |
322 Name of the environment (like \"table\") or macro (like \"\\\\myfig\"). | |
323 For macros, indicate the macro arguments for best results, as in | |
324 \"\\\\myfig[]{}{}{*}{}\". Use square brackets for optional arguments, | |
325 a star to mark the label argument, if any. The macro does not have to | |
326 have a label argument - you could also use \\label{..} inside one of | |
327 its arguments. | |
328 Special names: `section' for section labels, `any' to define a group | |
329 which contains all labels. | |
330 | |
331 This may also be a function to do local parsing and identify point | |
332 to be in a a non-standard label environment. The function must take | |
333 an argument BOUND and limit backward searches to this value. It | |
334 should return either nil or a cons cell (FUNCTION . POSITION) with | |
335 the function symbol and the position where the special environment | |
336 starts. See the Info documentation for an example. | |
337 | |
338 Finally this may also be nil if the entry is only meant to change | |
339 some settings associated with the type indicator character (see below). | |
340 | |
341 TYPE-KEY | |
342 Type indicator character, like `?t', must be a printable ASCII character. | |
343 The type indicator is a single character which defines a label type. | |
344 Any label inside the environment or macro is assumed to belong to this | |
345 type. The same character may occur several times in this list, to cover | |
346 cases in which different environments carry the same label type (like | |
347 `equation' and `eqnarray'). | |
348 If the type indicator is nil and the macro has a label argument {*}, | |
349 the macro defines neutral labels just like \label. In this case | |
350 the reminder of this entry is ignored. | |
351 | |
352 LABEL-PREFIX | |
353 Label prefix string, like \"tab:\". | |
354 The prefix is a short string used as the start of a label. It may be the | |
355 empty string. The prefix may contain the following `%' escapes: | |
356 %f Current file name with directory and extension stripped. | |
357 %F Current file name relative to directory of master file. | |
358 %u User login name, on systems which support this. | |
359 %S A section prefix derived with variable `reftex-section-prefixes'. | |
360 | |
361 Example: In a file `intro.tex', \"eq:%f:\" will become \"eq:intro:\"). | |
362 | |
363 REFERENCE-FORMAT | |
364 Format string for reference insert in buffer. `%s' will be replaced by | |
365 the label. | |
366 When the format starts with `~', the `~' will only be inserted if | |
367 there is not already a whitespace before point. | |
368 | |
369 CONTEXT-METHOD | |
370 Indication on how to find the short context. | |
371 - If nil, use the text following the \\label{...} macro. | |
372 - If t, use | |
373 - the section heading for section labels. | |
374 - text following the \\begin{...} statement of environments. | |
375 (not a good choice for environments like eqnarray or enumerate, | |
376 where one has several labels in a single environment). | |
377 - text after the macro name (starting with the first arg) for macros. | |
378 - If an integer, use the nth argument of the macro. As a special case, | |
379 1000 means to get text after the last macro argument. | |
380 - If a string, use as regexp to search *backward* from the label. Context | |
381 is then the text following the end of the match. E.g. putting this to | |
382 \"\\\\\\\\caption[[{]\" will use the caption in a figure or table | |
383 environment. | |
384 \"\\\\\\\\begin{eqnarray}\\\\|\\\\\\\\\\\\\\\\\" works for eqnarrays. | |
385 - If any of `caption', `item', `eqnarray-like', `alignat-like', this | |
386 symbol will internally be translated into an appropriate regexp | |
387 (see also the variable `reftex-default-context-regexps'). | |
388 - If a function, call this function with the name of the environment/macro | |
389 as argument. On call, point will be just after the \\label macro. The | |
390 function is expected to return a suitable context string. It should | |
391 throw an exception (error) when failing to find context. | |
392 As an example, here is a function returning the 10 chars following | |
393 the label macro as context: | |
394 | |
395 (defun my-context-function (env-or-mac) | |
396 (if (> (point-max) (+ 10 (point))) | |
397 (buffer-substring (point) (+ 10 (point))) | |
398 (error \"Buffer too small\"))) | |
399 | |
400 Label context is used in two ways by RefTeX: For display in the label | |
401 menu, and to derive a label string. If you want to use a different | |
402 method for each of these, specify them as a dotted pair. | |
403 E.g. `(nil . t)' uses the text after the label (nil) for display, and | |
404 text from the default position (t) to derive a label string. This is | |
405 actually used for section labels. | |
406 | |
407 MAGIC-WORDS | |
408 List of magic words which identify a reference to be of this type. | |
409 If the word before point is equal to one of these words when calling | |
410 `reftex-reference', the label list offered will be automatically | |
411 restricted to labels of the correct type. | |
412 If the first element of this wordlist is the symbol `regexp', the | |
413 strings are interpreted as regular expressions. RefTeX will add | |
414 a \"\\\\W\" to the beginning and other stuff to the end of the regexp. | |
415 | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
416 TOC-LEVEL |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
417 The integer level at which this environment should be added to the |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
418 table of contents. See also `reftex-section-levels'. A positive |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
419 value will number the entries mixed with the sectioning commands of |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
420 the same level. A negative value will make unnumbered entries. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
421 Useful only for theorem-like environments, will be ignored for macros. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
422 When omitted or nil, no TOC entries will be made. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
423 |
25280 | 424 If the type indicator characters of two or more entries are the same, RefTeX |
425 will use | |
426 - the first non-nil format and prefix | |
427 - the magic words of all involved entries. | |
428 | |
429 Any list entry may also be a symbol. If that has an association in | |
430 `reftex-label-alist-builtin', the cddr of that association is spliced into the | |
431 list. However, builtin defaults should normally be set with the variable | |
432 `reftex-default-label-alist-entries." | |
433 :group 'reftex-defining-label-environments | |
434 :set 'reftex-set-dirty | |
435 :type | |
436 `(repeat | |
437 (choice :tag "Package or Detailed " | |
438 :value ("" ?a nil nil nil nil) | |
439 (list :tag "Detailed Entry" | |
440 :value ("" ?a nil nil nil nil) | |
441 (choice :tag "Environment or \\macro " | |
442 (const :tag "Ignore, just use typekey" nil) | |
443 (string "") | |
444 (symbol :tag "Special parser" my-parser)) | |
445 (choice :tag "Type specification " | |
446 (const :tag "unspecified, like in \\label" nil) | |
447 (character :tag "Char " ?a)) | |
448 (choice :tag "Label prefix string " | |
449 (const :tag "Default" nil) | |
450 (string :tag "String" "lab:")) | |
451 (choice :tag "Label reference format" | |
452 (const :tag "Default" nil) | |
453 (string :tag "String" "~\\ref{%s}")) | |
454 (choice :tag "Context method " | |
455 (const :tag "Default position" t) | |
456 (const :tag "After label" nil) | |
457 (number :tag "Macro arg nr" 1) | |
458 (regexp :tag "Regexp" "") | |
459 (const :tag "Caption in float" caption) | |
460 (const :tag "Item in list" item) | |
461 (const :tag "Eqnarray-like" eqnarray-like) | |
462 (const :tag "Alignat-like" alignat-like) | |
463 (symbol :tag "Function" my-func)) | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
464 (repeat :tag "Magic words" :extra-offset 2 (string)) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
465 (option (choice :tag "Make TOC entry " |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
466 (const :tag "No entry" nil) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
467 (integer :tag "Level" :value -3)))) |
25280 | 468 (choice |
469 :tag "Package" | |
470 :value AMSTeX | |
471 ,@(mapcar | |
472 (lambda (x) | |
473 (list 'const :tag (concat (symbol-name (nth 0 x))) | |
474 (nth 0 x))) | |
475 reftex-label-alist-builtin))))) | |
476 | |
25804
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
477 (defcustom reftex-max-section-depth 12 |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
478 "Maximum depth of section levels in document structure. |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
479 Standard LaTeX needs default is 7, but there are packages for which this |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
480 needs to be larger." |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
481 :group 'reftex-defining-label-environments |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
482 :type 'integer) |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
483 |
25280 | 484 ;; LaTeX section commands and level numbers |
485 (defcustom reftex-section-levels | |
486 '( | |
487 ("part" . 0) | |
488 ("chapter" . 1) | |
489 ("section" . 2) | |
490 ("subsection" . 3) | |
491 ("subsubsection" . 4) | |
492 ("paragraph" . 5) | |
493 ("subparagraph" . 6) | |
494 ("subsubparagraph" . 7) | |
495 ("addchap" . -1) ; KOMA-Script | |
496 ("addsec" . -2) ; KOMA-Script | |
497 ;;; ("minisec" . -7) ; KOMA-Script | |
498 ) | |
499 "Commands and levels used for defining sections in the document. | |
500 This is an alist with each element like (COMMAND-NAME . LEVEL). | |
501 The car of each cons cell is the name of the section macro (without | |
502 the backslash). The cdr is a number indicating its level. A negative | |
503 level means the same level as the positive value, but the section will | |
25804
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
504 never get a number. The cdr may also be a function which will be called |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
505 to after the section-re matched to determine the level." |
25280 | 506 :group 'reftex-defining-label-environments |
507 :set 'reftex-set-dirty | |
508 :type '(repeat | |
509 (cons (string :tag "sectioning macro" "") | |
25804
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
510 (choice |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
511 (number :tag "level " 0) |
8ae20ae6b8d2
(reftex-section-levels): Function allowed as cdr.
Carsten Dominik <dominik@science.uva.nl>
parents:
25280
diff
changeset
|
512 (symbol :tag "function " my-level-func))))) |
25280 | 513 |
514 (defcustom reftex-section-prefixes '((0 . "part:") (1 . "cha:") (t . "sec:")) | |
515 "Prefixes for section labels. | |
516 When the label prefix given in an entry in `reftex-label-alist' contains `%S', | |
517 this list is used to determine the correct prefix string depending on the | |
518 current section level. | |
519 The list is an alist, with each entry of the form (KEY . PREFIX) | |
520 Possible keys are sectioning macro names like `chapter', section levels | |
521 (as given in `reftex-section-levels'), and t for the default." | |
522 :group 'reftex-defining-label-environments | |
523 :type '(repeat | |
524 (cons :value (0 . "") | |
525 (choice | |
526 (string :tag "macro name") | |
527 (integer :tag "section level") | |
528 (const :tag "default" t)) | |
529 (string :tag "Prefix")))) | |
530 | |
531 (defcustom reftex-default-context-regexps | |
532 '((caption . "\\\\\\(rot\\)?caption\\*?[[{]") | |
533 (item . "\\\\item\\(\\[[^]]*\\]\\)?") | |
534 (eqnarray-like . "\\\\begin{%s}\\|\\\\\\\\") | |
535 (alignat-like . "\\\\begin{%s}{[0-9]*}\\|\\\\\\\\")) | |
536 "Alist with default regular expressions for finding context. | |
537 The form (format regexp (regexp-quote environment)) is used to calculate | |
538 the final regular expression - so %s will be replaced with the environment | |
539 or macro." | |
540 :group 'reftex-defining-label-environments | |
541 :type '(repeat (cons (symbol) (regexp)))) | |
542 | |
543 (defcustom reftex-special-environment-functions nil | |
544 "List of functions to be called when trying to figure out current environment. | |
545 These are special functions to detect \"environments\" which do not | |
546 start with \\begin and end with \\end. Some LaTeX packages seem to | |
547 use such non-standard ways to set up environment-like constructs. The | |
548 purpose of each function in this list is to detect if point is | |
549 currently inside such a special \"environment\". If the environment | |
550 carries a label, you must also set up an entry for it in | |
551 `reftex-label-alist'. | |
552 | |
553 The function should check if point is currently in the special | |
554 environment it was written to detect. If so, the function must return | |
555 a cons cell (NAME . POSITION). NAME is the name of the environment | |
556 detected and POSITION is the buffer position where the environment | |
557 starts. The function must return nil on failure to detect the | |
558 environment. | |
559 | |
560 The function must take an argument BOUND. If non-nil, BOUND is a | |
561 boundary for backwards searches which should be observed. | |
562 | |
563 Here is an example. The LaTeX package linguex.sty defines list macros | |
564 `\\ex.', `\\a.', etc for lists which are terminated by `\\z.' or an empty | |
565 line. | |
566 | |
567 \\ex. \\label{ex:12} Some text in an exotic language ... | |
568 \\a. \\label{ex:13} more stuff | |
569 \\b. \\label{ex:14} still more stuff | |
570 | |
571 ... more text after the empty line terminating all lists | |
572 | |
573 And here is the setup for RefTeX: | |
574 | |
575 1. Define a dummy environment for this in `reftex-label-alist'. Dummy means, | |
576 make up an environment name even though it is not used with \\begin and | |
577 \\end. Here we use \"linguex\" as this name. | |
578 | |
579 (setq reftex-label-alist | |
580 '((\"linguex\" ?x \"ex:\" \"~\\\\ref{%s}\" nil (\"Example\" \"Ex.\")))) | |
581 | |
582 2. Write a function to detect the list macros and the determinators as well. | |
583 | |
584 (defun my-detect-linguex-list (bound) | |
585 (let ((pos (point)) p1) | |
586 (save-excursion | |
587 ;; Search for any of the linguex item macros at the beginning of a line | |
588 (if (re-search-backward | |
589 \"^[ \\t]*\\\\(\\\\\\\\\\\\(ex\\\\|a\\\\|b\\\\|c\\\\|d\\\\|e\\\\|f\\\\)g?\\\\.\\\\)\" bound t) | |
590 (progn | |
591 (setq p1 (match-beginning 1)) | |
592 ;; Make sure no empty line or \\z. is between us and the item macro | |
593 (if (re-search-forward \"\\n[ \\t]*\\n\\\\|\\\\\\\\z\\\\.\" pos t) | |
594 ;; Return nil because list was already closed | |
595 nil | |
596 ;; OK, we got it | |
597 (cons \"linguex\" p1))) | |
598 ;; Return nil for not found | |
599 nil)))) | |
600 | |
601 3. Tell RefTeX to use this function | |
602 | |
603 (setq reftex-special-environment-functions '(my-detect-linguex-list)) | |
604 " | |
605 :group 'reftex-defining-label-environments | |
606 :type 'hook) | |
607 | |
608 ;; Label insertion | |
609 | |
610 (defgroup reftex-making-and-inserting-labels nil | |
611 "Options on how to create new labels." | |
612 :group 'reftex-label-support) | |
613 | |
614 (defcustom reftex-insert-label-flags '("s" "sft") | |
615 "Flags governing label insertion. First flag DERIVE, second flag PROMPT. | |
616 | |
617 If DERIVE is t, RefTeX will try to derive a sensible label from context. | |
618 A section label for example will be derived from the section heading. | |
619 The conversion of the context to a legal label is governed by the | |
620 specifications given in `reftex-derive-label-parameters'. | |
621 If RefTeX fails to derive a label, it will prompt the user. | |
622 If DERIVE is nil, the label generated will consist of the prefix and a | |
623 unique number, like `eq:23'. | |
624 | |
625 If PROMPT is t, the user will be prompted for a label string. The prompt will | |
626 already contain the prefix, and (if DERIVE is t) a default label derived from | |
627 context. When PROMPT is nil, the default label will be inserted without | |
628 query. | |
629 | |
630 So the combination of DERIVE and PROMPT controls label insertion. Here is a | |
631 table describing all four possibilities: | |
632 | |
633 DERIVE PROMPT ACTION | |
634 ------------------------------------------------------------------------- | |
635 nil nil Insert simple label, like eq:22 or sec:13. No query. | |
636 nil t Prompt for label. | |
637 t nil Derive a label from context and insert without query. | |
638 t t Derive a label from context and prompt for confirmation. | |
639 | |
640 Each flag may be set to t, nil, or a string of label type letters | |
641 indicating the label types for which it should be true. The strings work | |
642 like character classes. | |
643 Thus, the combination may be set differently for each label type. The | |
644 default settings \"s\" and \"sft\" mean: Derive section labels from headings | |
645 (with confirmation). Prompt for figure and table labels. Use simple labels | |
646 without confirmation for everything else. | |
647 The available label types are: s (section), f (figure), t (table), i (item), | |
648 e (equation), n (footnote), N (endnote), plus any definitions in | |
649 `reftex-label-alist'." | |
650 :group 'reftex-making-and-inserting-labels | |
651 :type '(list (choice :tag "Derive label from context" | |
652 (const :tag "always" t) | |
653 (const :tag "never" nil) | |
654 (string :tag "selected label types" "")) | |
655 (choice :tag "Prompt for label string " | |
656 :entry-format " %b %v" | |
657 (const :tag "always" t) | |
658 (const :tag "never" nil) | |
659 (string :tag "selected label types" "")))) | |
660 | |
661 (defcustom reftex-string-to-label-function 'reftex-string-to-label | |
662 "Function to turn an arbitrary string into a legal label. | |
663 RefTeX's default function uses the variable `reftex-derive-label-parameters'." | |
664 :group 'reftex-making-and-inserting-labels | |
665 :type 'symbol) | |
666 | |
667 (defcustom reftex-translate-to-ascii-function 'reftex-latin1-to-ascii | |
668 "Filter function which will process a context string before it is used | |
669 to derive a label from it. The intended application is to convert ISO or | |
670 Mule characters into something legal in labels. The default function | |
671 removes the accents from Latin-1 characters. X-Symbol (>=2.6) sets this | |
672 variable to the much more general `x-symbol-translate-to-ascii'." | |
673 :group 'reftex-making-and-inserting-labels | |
674 :type 'symbol) | |
675 | |
676 (defcustom reftex-derive-label-parameters '(3 20 t 1 "-" | |
677 ("the" "on" "in" "off" "a" "for" "by" "of" "and" "is" "to") t) | |
678 "Parameters for converting a string into a label. | |
679 This variable is a list of the following items. | |
680 | |
681 NWORDS Number of words to use. | |
682 MAXCHAR Maximum number of characters in a label string. | |
683 ILLEGAL nil: Throw away any words containing characters illegal in labels. | |
684 t: Throw away only the illegal characters, not the whole word. | |
685 ABBREV nil: Never abbreviate words. | |
686 t: Always abbreviate words (see `reftex-abbrev-parameters'). | |
687 not t and not nil: Abbreviate words if necessary to shorten | |
688 label string below MAXCHAR. | |
689 SEPARATOR String separating different words in the label. | |
690 IGNOREWORDS List of words which should not be part of labels. | |
691 DOWNCASE t: Downcase words before using them." | |
692 :group 'reftex-making-and-inserting-labels | |
693 :type '(list (integer :tag "Number of words " 3) | |
694 (integer :tag "Maximum label length " 20) | |
695 (choice :tag "Illegal characters in words" | |
696 (const :tag "throw away entire word" nil) | |
697 (const :tag "throw away single chars" t)) | |
698 (choice :tag "Abbreviate words " | |
699 (const :tag "never" nil) | |
700 (const :tag "always" t) | |
701 (const :tag "when label is too long" 1)) | |
702 (string :tag "Separator between words " "-") | |
703 (repeat :tag "Ignore words" | |
704 :entry-format " %i %d %v" | |
705 (string :tag "")) | |
706 (option (boolean :tag "Downcase words ")))) | |
707 | |
708 (defcustom reftex-label-illegal-re "[^-a-zA-Z0-9_+=:;,.]" | |
709 "Regexp matching characters not legal in labels." | |
710 :group 'reftex-making-and-inserting-labels | |
711 :type '(regexp :tag "Regular Expression")) | |
712 | |
713 (defcustom reftex-abbrev-parameters '(4 2 "^aeiou" "aeiou") | |
714 "Parameters for abbreviation of words. | |
715 This variable is a list of the following items. | |
716 | |
717 MIN-CHARS Minimum number of characters remaining after abbreviation. | |
718 MIN-KILL Minimum number of characters to remove when abbreviating words. | |
719 BEFORE Character class before abbrev point in word. | |
720 AFTER Character class after abbrev point in word." | |
721 :group 'reftex-making-and-inserting-labels | |
722 :type '(list | |
723 (integer :tag "Minimum chars per word" 4) | |
724 (integer :tag "Shorten by at least " 2) | |
725 (string :tag "cut before char class " "^saeiou") | |
726 (string :tag "cut after char class " "aeiou"))) | |
727 | |
728 (defcustom reftex-format-label-function nil | |
729 "Function which produces the string to insert as a label definition. | |
730 Normally should be nil, unless you want to do something fancy. | |
731 The function will be called with two arguments, the LABEL and the DEFAULT | |
732 FORMAT, which usually is `\label{%s}'. The function should return the | |
733 string to insert into the buffer." | |
734 :group 'reftex-making-and-inserting-labels | |
735 :type 'function) | |
736 | |
737 ;; Label referencing | |
738 | |
739 (defgroup reftex-referencing-labels nil | |
740 "Options on how to reference labels." | |
741 :group 'reftex-label-support) | |
742 | |
743 (eval-and-compile | |
744 (defconst reftex-tmp | |
745 '((const :tag "on" t) | |
746 (const :tag "off" nil) | |
747 (string :tag "Selected label types")))) | |
748 | |
749 (defcustom reftex-label-menu-flags '(t t nil nil nil nil t nil) | |
750 "List of flags governing the label menu makeup. | |
751 The flags are: | |
752 | |
753 TABLE-OF-CONTENTS Show the labels embedded in a table of context. | |
754 SECTION-NUMBERS Include section numbers (like 4.1.3) in table of contents. | |
755 COUNTERS Show counters. This just numbers the labels in the menu. | |
756 NO-CONTEXT Non-nil means do NOT show the short context. | |
757 FOLLOW Follow full context in other window. | |
758 SHOW-COMMENTED Show labels from regions which are commented out. | |
759 MATCH-IN-TOC Obsolete flag. | |
760 SHOW FILES Show begin and end of included files. | |
761 | |
762 Each of these flags can be set to t or nil, or to a string of type letters | |
763 indicating the label types for which it should be true. These strings work | |
764 like character classes in regular expressions. Thus, setting one of the | |
765 flags to \"sf\" makes the flag true for section and figure labels, nil | |
766 for everything else. Setting it to \"^sf\" makes it the other way round. | |
767 The available label types are: s (section), f (figure), t (table), i (item), | |
768 e (equation), n (footnote), plus any definitions in `reftex-label-alist'. | |
769 | |
770 Most options can also be switched from the label menu itself - so if you | |
771 decide here to not have a table of contents in the label menu, you can still | |
772 get one interactively during selection from the label menu." | |
773 :group 'reftex-referencing-labels | |
774 :type | |
775 `(list | |
776 (choice :tag "Embed in table of contents " ,@reftex-tmp) | |
777 (choice :tag "Show section numbers " ,@reftex-tmp) | |
778 (choice :tag "Show individual counters " ,@reftex-tmp) | |
779 (choice :tag "Hide short context " ,@reftex-tmp) | |
780 (choice :tag "Follow context in other window " ,@reftex-tmp) | |
781 (choice :tag "Show commented labels " ,@reftex-tmp) | |
782 (choice :tag "Obsolete flag, Don't use. " ,@reftex-tmp) | |
783 (choice :tag "Show begin/end of included files" ,@reftex-tmp))) | |
784 | |
785 (defcustom reftex-multiref-punctuation '((?, . ", ") (?- . "--") (?+ . " and ")) | |
786 "Punctuation strings for multiple references. | |
787 When marking is used in the selection buffer to select several references, | |
788 this variable associates the 3 marking characters `,-+' with prefix strings | |
789 to be inserted into the buffer before the corresponding \ref macro. | |
790 This is used to string together whole reference sets, like | |
791 `eqs. 1,2,3-5,6 and 7' in a single call to `reftex-reference'. See manual." | |
792 :group 'reftex-referencing-labels | |
793 :type '(repeat (cons (character) (string)))) | |
794 | |
795 (defcustom reftex-vref-is-default nil | |
796 "*Non-nil means, the varioref macro \\vref is used as default. | |
797 In the selection buffer, the `v' key toggles the reference macro between | |
798 `\\ref' and `\\vref'. The value of this variable determines the default | |
799 which is active when entering the selection process. | |
800 Instead of nil or t, this may also be a string of type letters indicating | |
801 the label types for which it should be true." | |
802 :group 'reftex-referencing-labels | |
803 :type `(choice :tag "\\vref is default macro" ,@reftex-tmp)) | |
804 | |
805 (defcustom reftex-fref-is-default nil | |
806 "*Non-nil means, the fancyref macro \\fref is used as default. | |
807 In the selection buffer, the `V' key toggles the reference macro between | |
808 `\\ref', `\\fref' and `\\Fref'. The value of this variable determines | |
809 the default which is active when entering the selection process. | |
810 Instead of nil or t, this may also be a string of type letters indicating | |
811 the label types for which it should be true." | |
812 :group 'reftex-referencing-labels | |
813 :type `(choice :tag "\\fref is default macro" ,@reftex-tmp)) | |
814 | |
815 (defcustom reftex-level-indent 2 | |
816 "*Number of spaces to be used for indentation per section level." | |
817 :group 'reftex-referencing-labels | |
818 :type 'integer) | |
819 | |
820 (defcustom reftex-guess-label-type t | |
821 "*Non-nil means, `reftex-reference' will try to guess the label type. | |
822 To do that, RefTeX will look at the word before the cursor and compare it with | |
823 the words given in `reftex-label-alist'. When it finds a match, RefTeX will | |
824 immediately offer the correct label menu - otherwise it will prompt you for | |
825 a label type. If you set this variable to nil, RefTeX will always prompt." | |
826 :group 'reftex-referencing-labels | |
827 :type 'boolean) | |
828 | |
829 (defcustom reftex-format-ref-function nil | |
830 "Function which produces the string to insert as a reference. | |
831 Normally should be nil, because the format to insert a reference can | |
832 already be specified in `reftex-label-alist'. | |
833 This hook also is used by the special commands to insert `\vref' and `\fref' | |
834 references, so even if you set this, your setting will be ignored by | |
835 the special commands. | |
836 The function will be called with two arguments, the LABEL and the DEFAULT | |
837 FORMAT, which normally is `~\ref{%s}'. The function should return the | |
838 string to insert into the buffer." | |
839 :group 'reftex-referencing-labels | |
840 :type 'function) | |
841 | |
842 (defcustom reftex-select-label-mode-hook nil | |
843 "Mode hook for reftex-select-label-mode." | |
844 :group 'reftex-referencing-labels | |
845 :type 'hook) | |
846 | |
847 ;; BibteX citation configuration ---------------------------------------- | |
848 | |
849 (defgroup reftex-citation-support nil | |
850 "Support for referencing bibliographic data with BibTeX." | |
851 :group 'reftex) | |
852 | |
853 (defvar reftex-bibfile-ignore-list nil) ; compatibility | |
854 (defcustom reftex-bibfile-ignore-regexps nil | |
855 "*List of regular expressions to exclude files in \\bibliography{..}. | |
856 File names matched by these regexps will not be parsed by RefTeX. | |
857 Intended for files which contain only `@string' macro definitions and the | |
858 like, which are ignored by RefTeX anyway." | |
859 :group 'reftex-citation-support | |
860 :set 'reftex-set-dirty | |
861 :type '(repeat (regexp))) | |
862 | |
863 (defcustom reftex-default-bibliography nil | |
864 "*List of BibTeX database files which should be used if none are specified. | |
865 When `reftex-citation' is called from a document which has neither a | |
866 `\bibliography{..}' statement nor a `thebibliography' environment, | |
867 RefTeX will scan these files instead. Intended for using `reftex-citation' | |
868 in non-LaTeX files. The files will be searched along the BIBINPUTS or TEXBIB | |
869 path." | |
870 :group 'reftex-citation-support | |
871 :type '(repeat (file))) | |
872 | |
873 (defcustom reftex-sort-bibtex-matches 'reverse-year | |
874 "*Sorting of the entries found in BibTeX databases by reftex-citation. | |
875 Possible values: | |
876 nil Do not sort entries. | |
877 'author Sort entries by author name. | |
878 'year Sort entries by increasing year. | |
879 'reverse-year Sort entries by decreasing year." | |
880 :group 'reftex-citation-support | |
881 :type '(choice (const :tag "not" nil) | |
882 (const :tag "by author" author) | |
883 (const :tag "by year" year) | |
884 (const :tag "by year, reversed" reverse-year))) | |
885 | |
886 (defcustom reftex-cite-format 'default | |
887 "*The format of citations to be inserted into the buffer. | |
888 It can be a string or an alist or a symbol. In the simplest case this | |
889 is just the string \"\\cite{%l}\", which is also the default. See the | |
890 definition of `reftex-cite-format-builtin' for more complex examples. | |
891 | |
892 If `reftex-cite-format' is a string, it will be used as the format. | |
893 In the format, the following percent escapes will be expanded. | |
894 | |
895 %l The BibTeX label of the citation. | |
896 %a List of author names, see also `reftex-cite-punctuation. | |
897 %2a Like %a, but abbreviate more than 2 authors like Jones et al. | |
898 %A First author name only. | |
899 %e Works like %a, but on list of editor names. (%2e and %E work a well) | |
900 | |
901 It is also possible to access all other BibTeX database fields: | |
902 %b booktitle %c chapter %d edition %h howpublished | |
903 %i institution %j journal %k key %m month | |
904 %n number %o organization %p pages %P first page | |
905 %r address %s school %u publisher %t title | |
906 %v volume %y year | |
907 %B booktitle, abbreviated %T title, abbreviated | |
908 | |
909 Usually, only %l is needed. The other stuff is mainly for the echo area | |
910 display, and for (setq reftex-comment-citations t). | |
911 | |
912 %< as a special operator kills punctuation and space around it after the | |
913 string has been formatted. | |
914 | |
915 Beware that all this only works with BibTeX database files. When | |
916 citations are made from the \\bibitems in an explicit thebibliography | |
917 environment, only %l is available. | |
918 | |
919 If `reftex-cite-format' is an alist of characters and strings, the user | |
920 will be prompted for a character to select one of the possible format | |
921 strings. | |
922 In order to configure this variable, you can either set | |
923 `reftex-cite-format' directly yourself or set it to the SYMBOL of one of | |
924 the predefined styles. The predefined symbols are those which have an | |
925 association in the constant `reftex-cite-format-builtin'. | |
926 E.g.: (setq reftex-cite-format 'natbib)" | |
927 :group 'reftex-citation-support | |
928 :type | |
929 `(choice | |
930 :format "%{%t%}: \n%[Value Menu%] %v" | |
931 (radio :tag "Symbolic Builtins" | |
932 :indent 4 | |
933 :value default | |
934 ,@(mapcar | |
935 (lambda (x) | |
936 (list 'const :tag (concat (symbol-name (nth 0 x)) | |
937 ": " (nth 1 x)) | |
938 (nth 0 x))) | |
939 reftex-cite-format-builtin)) | |
940 (string :tag "format string" "\\cite{%l}") | |
941 (repeat :tag "key-ed format strings" | |
942 :value ((?\r . "\\cite{%l}") | |
943 (?t . "\\cite{%l}") (?p . "\\cite{%l}")) | |
944 (cons (character :tag "Key character" ?\r) | |
945 (string :tag "Format string" ""))))) | |
946 | |
947 (defcustom reftex-comment-citations nil | |
948 "*Non-nil means add a comment for each citation describing the full entry. | |
949 The comment is formatted according to `reftex-cite-comment-format'." | |
950 :group 'reftex-citation-support | |
951 :type 'boolean) | |
952 | |
953 (defcustom reftex-cite-comment-format | |
954 "%% %2a %y, %j %v, %P, %b, %e, %u, %s %<\n" | |
955 "Citation format used for commented citations. Must NOT contain %l. | |
956 See the variable `reftex-cite-format' for possible percent escapes." | |
957 :group 'reftex-citation-support | |
958 :type 'string) | |
959 | |
960 (defcustom reftex-cite-view-format "%2a %y, %T, %B, %j %v:%P, %s %<" | |
961 "Citation format used to display citation info in the message area. | |
962 Must NOT contain %l. See the variable `reftex-cite-format' for | |
963 possible percent escapes." | |
964 :group 'reftex-citation-support | |
965 :group 'reftex-viewing-cross-references | |
966 :type 'string) | |
967 | |
968 (defcustom reftex-cite-punctuation '(", " " \\& " " {\\it et al.}") | |
969 "Punctuation for formatting of name lists in citations. | |
970 This is a list of 3 strings. | |
971 1. normal names separator, like \", \" in Jones, Brown and Miller | |
972 2. final names separator, like \" and \" in Jones, Brown and Miller | |
973 3. The \"et al\" string, like \" {\\it et al.}\" in Jones {\\it et al.}" | |
974 :group 'reftex-citation-support | |
975 :type '(list | |
976 (string :tag "Separator for names ") | |
977 (string :tag "Separator for last name in list") | |
978 (string :tag "string used as et al. "))) | |
979 | |
980 (defcustom reftex-format-cite-function nil | |
981 "Function which produces the string to insert as a citation. | |
982 Normally should be nil, because the format to insert a reference can | |
983 already be specified in `reftex-cite-format'. | |
984 The function will be called with two arguments, the CITATION KEY and the | |
985 DEFAULT FORMAT, which is taken from `reftex-cite-format'. The function | |
986 should return the string to insert into the buffer." | |
987 :group 'reftex-citation-support | |
988 :type 'function) | |
989 | |
990 (defcustom reftex-select-bib-mode-hook nil | |
991 "Mode hook for reftex-select-bib-mode." | |
992 :group 'reftex-citation-support | |
993 :type 'hook) | |
994 | |
995 ;; Index Support Configuration | |
996 | |
997 (defgroup reftex-index-support nil | |
998 "Support for viewing and editing the index." | |
999 :group 'reftex) | |
1000 | |
1001 (defcustom reftex-support-index t | |
1002 "*Non-nil means, index entries are parsed as well. | |
1003 Index support is resource intensive and the internal structure holding the | |
1004 parsed information can become quite big. Therefore it can be turned off. | |
1005 When this is nil and you execute a command which requires index support, | |
1006 you will be asked for confirmation to turn it on and rescan the document." | |
1007 :group 'reftex-index-support | |
1008 :type 'boolean) | |
1009 | |
1010 (defcustom reftex-index-special-chars '("!" "|" "@" "\"" "\\") | |
1011 "Special characters in index entries. The value is a list of five strings. | |
1012 These correspond to the makeindex keywords LEVEL ENCAP ACTUAL QUOTE ESCAPE." | |
1013 :group 'reftex-index-support | |
1014 :type '(list | |
1015 (string :tag "LEVEL separator") | |
1016 (string :tag "ENCAP char ") | |
1017 (string :tag "ACTUAL char ") | |
1018 (string :tag "QUOTE char ") | |
1019 (string :tag "ESCAPE char "))) | |
1020 | |
1021 (defcustom reftex-index-macros nil | |
1022 "Macros which define index entries. The structure is | |
1023 | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1024 (MACRO INDEX-TAG KEY PREFIX EXCLUDE REPEAT) |
25280 | 1025 |
1026 MACRO is the macro. Arguments should be denoted by empty braces like | |
1027 \\index[]{*}. Use square brackets to denote optional arguments. The star | |
1028 marks where the index key is. | |
1029 | |
1030 INDEX-TAG is a short name of the index. \"idx\" and \"glo\" are | |
1031 reserved for the default index and the glossary. Other indices can be | |
1032 defined as well. If this is an integer, the Nth argument of the macro | |
1033 holds the index tag. | |
1034 | |
1035 KEY is a character which is used to identify the macro for input with | |
1036 \\[reftex-index]. ?i, ?I, and ?g are reserved for default index and glossary. | |
1037 | |
1038 PREFIX can be a prefix which is added to the KEY part of the index entry. | |
1039 If you have a macro \\newcommand{\\molec}[1]{#1\\index{Molecules!#1}}, this | |
1040 prefix should be \"Molecules!\". See the manual for details. | |
1041 | |
1042 EXCLUDE can be a function. If this function exists and returns a non-nil | |
1043 value, the index entry at point is ignored. This was implemented to support | |
1044 the (deprecated) `^' and `_' shortcuts in the LaTeX2e `index' package. | |
1045 | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1046 REPEAT, if non-nil, means the index macro does not typeset the entry in |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1047 the text, so that the text has to be repeated outside the index macro. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1048 Needed for `reftex-index-selection-or-word' and for indexing from the |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1049 phrase buffer. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1050 |
25280 | 1051 The final entry may also be a symbol if this entry has a association |
1052 in the variable `reftex-index-macros-builtin' to specify the main | |
1053 indexing package you are using. Legal values are currently | |
1054 default The LaTeX default - unnecessary to specify this one | |
1055 multind The multind.sty package | |
1056 index The index.sty package | |
1057 index-shortcut The index.sty packages with the ^ and _ shortcuts. | |
1058 Should not be used - only for old documents. | |
1059 Note that AUCTeX sets these things internally for RefTeX as well, so | |
1060 with a sufficiently new version of AUCTeX, you should not set the | |
1061 package here." | |
1062 :group 'reftex-index-support | |
1063 :set 'reftex-set-dirty | |
1064 :type `(list | |
1065 (repeat | |
1066 :inline t | |
1067 (list :value ("" "idx" ?a "" nil) | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1068 (string :tag "Macro with args") |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1069 (choice :tag "Index Tag " |
25280 | 1070 (string) |
1071 (integer :tag "Macro arg Nr" :value 1)) | |
1072 (character :tag "Access Key ") | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1073 (string :tag "Key Prefix ") |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1074 (symbol :tag "Exclusion hook ") |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1075 (boolean :tag "Repeat Outside "))) |
25280 | 1076 (option |
1077 :tag "Package:" | |
1078 (choice :tag "Package" | |
1079 :value index | |
1080 ,@(mapcar | |
1081 (lambda (x) | |
1082 (list 'const :tag (concat (symbol-name (nth 0 x)) | |
1083 ": " (nth 1 x)) | |
1084 (nth 0 x))) | |
1085 reftex-index-macros-builtin))))) | |
1086 | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1087 (defcustom reftex-index-default-macro '(?i "idx") |
25280 | 1088 "The default index macro for \\[reftex-index-selection-or-word]. |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1089 This is a list with (MACRO-KEY DEFAULT-TAG). |
25280 | 1090 |
1091 MACRO-KEY: Character identifying an index macro - see `reftex-index-macros'. | |
1092 DEFAULT-TAG: This is the tag to be used if the macro requires a TAG argument. | |
1093 When this is nil and a TAG is needed, RefTeX will ask for it. | |
1094 When this is the empty string and the TAG argument of the index | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1095 macro is optional, the TAG argument will be omitted." |
25280 | 1096 :group 'reftex-index-support |
1097 :type '(list | |
1098 (character :tag "Character identifying default macro") | |
1099 (choice :tag "Default index tag " | |
1100 (const nil) | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1101 (string)))) |
25280 | 1102 |
1103 (defcustom reftex-index-default-tag "idx" | |
1104 "Default index tag. | |
1105 When working with multiple indexes, RefTeX queries for an index tag when | |
1106 creating index entries or displaying a specific index. This variable controls | |
1107 the default offered for these queries. The default can be selected with RET | |
1108 during selection or completion. Legal values of this variable are: | |
1109 | |
1110 nil Do not provide a default index | |
1111 \"tag\" The default index tag given as a string, e.g. \"idx\". | |
1112 last The last used index tag will be offered as default." | |
1113 :group 'reftex-index-support | |
1114 :type '(choice | |
1115 (const :tag "no default" nil) | |
1116 (const :tag "last used " 'last) | |
1117 (string :tag "index tag " "idx"))) | |
1118 | |
1119 (defcustom reftex-index-math-format "$%s$" | |
1120 "Format of index entries when copied from inside math mode. | |
1121 When `reftex-index-selection-or-word' is executed inside TeX math mode, | |
1122 the index key copied from the buffer is processed with this format string | |
1123 through the `format' function. This can be used to add the math delimiters | |
1124 (e.g. `$') to the string. | |
1125 Requires the `texmathp.el' library which is part of AUCTeX." | |
1126 :group 'reftex-index-support | |
1127 :type 'string) | |
1128 | |
27192
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1129 (defcustom reftex-index-phrase-file-extension ".rip" |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1130 "File extension for the index phrase file. |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1131 This extension will be added to the base name of the master file." |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1132 :group 'reftex-index-support |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1133 :type 'string) |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1134 |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1135 (defcustom reftex-index-phrases-logical-and-regexp " *&& *" |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1136 "Regexp matching the `and' operator for index arguments in phrases file. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1137 When several index arguments in a phrase line are separated by this |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1138 operator, each part will generate an index macro. So each match of |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1139 the search phrase will produce *several* different index entries. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1140 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1141 Note: make sure this does no match things which are not separators. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1142 This logical `and' has higher priority than the logical `or' specified in |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1143 `reftex-index-phrases-logical-or-regexp'." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1144 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1145 :type 'regexp) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1146 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1147 (defcustom reftex-index-phrases-logical-or-regexp " *|| *" |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1148 "Regexp matching the `or' operator for index arguments in phrases file. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1149 When several index arguments in a phrase line are separated by this |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1150 operator, the user will be asked to select one of them at each match |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1151 of the search phrase. The first index arg will be the default - a |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1152 number key 1-9 must be pressed to switch to another. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1153 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1154 Note: make sure this does no match things which are not separators. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1155 The logical `and' specified in `reftex-index-phrases-logical-or-regexp' |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1156 has higher priority than this logical `or'." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1157 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1158 :type 'regexp) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1159 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1160 (defcustom reftex-index-phrases-search-whole-words t |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1161 "*Non-nil means phrases search will look for whole words, not subwords. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1162 This works by requiring word boundaries at the beginning and end of |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1163 the search string. When the search phrase already has a non-word-char |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1164 at one of these points, no word boundary is required there." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1165 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1166 :type 'boolean) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1167 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1168 (defcustom reftex-index-phrases-case-fold-search t |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1169 "*Non-nil means, searching for index phrases will ignore case." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1170 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1171 :type 'boolean) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1172 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1173 (defcustom reftex-index-phrases-skip-indexed-matches nil |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1174 "*Non-nil means, skip matches which appear to be indexed already. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1175 When doing global indexing from the phrases buffer, searches for some |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1176 phrases may match at places where that phrase was already indexed. In |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1177 particular when indexing an already processed document again, this |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1178 will even be the norm. When this variable is non-nil, RefTeX checks if |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1179 the match is an index macro argument, or if an index macro is directly |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1180 before or after the phrase. If that is the case, that match will |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1181 be ignored." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1182 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1183 :type 'boolean) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1184 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1185 (defcustom reftex-index-phrases-wrap-long-lines nil |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1186 "*Non-nil means, when indexing from the phrases buffer, wrap lines. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1187 Inserting indexing commands in a line makes the line longer - often |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1188 so long that it does not fit onto the screen. When this variable is |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1189 non-nil, newlines will be added as necessary before and/or after the |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1190 indexing command to keep lines short. However, the matched text |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1191 phrase and its index command will always end up on a single line.") |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1192 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1193 (defcustom reftex-index-phrases-sort-prefers-entry nil |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1194 "*Non-nil means when sorting phrase lines, the explicit index entry is used. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1195 Phrase lines in the phrases buffer contain a search phrase, and |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1196 sorting is normally based on these. Some phrase lines also have |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1197 an explicit index argument specified. When this variable is non-nil, |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1198 the index argument will be used for sorting." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1199 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1200 :type 'boolean) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1201 |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1202 (defcustom reftex-index-phrases-sort-in-blocks t |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1203 "*Non-nil means, empty and comment lines separate phrase buffer into blocks. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1204 Sorting will then preserve blocks, so that lines are re-arranged only |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1205 within blocks." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1206 :group 'reftex-index-support |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1207 :type 'boolean) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25804
diff
changeset
|
1208 |
25280 | 1209 (defcustom reftex-index-section-letters "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
1210 "The letters which denote sections in the index. | |
1211 Usually these are all capital letters. Don't use any downcase letters. | |
1212 Order is not significant, the index will be sorted by whatever the sort | |
1213 function thinks is correct. | |
1214 In addition to these letters, RefTeX will create a group `!' which | |
1215 contains all entries sorted below the lowest specified letter. | |
1216 In the index buffer, pressing any of these capital letters or `!' will jump | |
1217 to that section." | |
1218 :group 'reftex-index-support | |
1219 :type '(string :tag "Capital letters")) | |
1220 | |
1221 (defcustom reftex-index-include-context nil | |
1222 "*Non-nil means, display the index definition context in the index buffer. | |
1223 This flag may also be toggled from the index buffer with the `c' key." | |
1224 :group 'reftex-index-support | |
1225 :type 'boolean) | |
1226 | |
1227 (defcustom reftex-index-follow-mode nil | |
1228 "*Non-nil means, point in *Index* buffer will cause other window to follow. | |
1229 The other window will show the corresponding part of the document. | |
1230 This flag can be toggled from within the *Index* buffer with the `f' key." | |
1231 :group 'reftex-table-of-contents-browser | |
1232 :type 'boolean) | |
1233 | |
1234 ;; Viewing Cross References | |
1235 | |
1236 (defgroup reftex-viewing-cross-references nil | |
1237 "Displaying cross references and citations." | |
1238 :group 'reftex) | |
1239 | |
1240 (defcustom reftex-view-crossref-extra nil | |
1241 "Macros which can be used for the display of cross references. | |
1242 This is used when `reftex-view-crossref' is called with point in an | |
1243 argument of a macro. Note that crossref viewing for citations, | |
1244 references (both ways) and index entries is hard-coded. This variable | |
1245 is only to configure additional structures for which crossreference | |
1246 viewing can be useful. Each entry has the structure | |
1247 | |
1248 (MACRO-RE SEARCH-RE HIGHLIGHT). | |
1249 | |
1250 MACRO-RE is matched against the macro. SEARCH-RE is the regexp used | |
1251 to search for cross references. `%s' in this regexp is replaced with | |
1252 with the macro argument at point. HIGHLIGHT is an integer indicating | |
1253 which subgroup of the match should be highlighted." | |
1254 :group 'reftex-viewing-cross-references | |
1255 :type '(repeat (group (regexp :tag "Macro Regexp ") | |
1256 (string :tag "Search Regexp ") | |
1257 (integer :tag "Highlight Group")))) | |
1258 | |
1259 (defcustom reftex-auto-view-crossref t | |
1260 "*Non-nil means, initially turn automatic viewing of crossref info on. | |
1261 Automatic viewing of crossref info normally uses the echo area. | |
1262 Whenever point is on the argument of a \\ref or \\cite macro, and no | |
1263 other message is being displayed, the echo area will display | |
1264 information about that cross reference. You can also set the variable | |
1265 to the symbol `window'. In this case a small temporary window is | |
1266 used for the display. | |
1267 This feature can be turned on and of from the menu | |
1268 (Ref->Options)." | |
1269 :group 'reftex-viewing-cross-references | |
1270 :type '(choice (const :tag "off" nil) | |
1271 (const :tag "in Echo Area" t) | |
1272 (const :tag "in Other Window" window))) | |
1273 | |
1274 (defcustom reftex-idle-time 1.2 | |
1275 "*Time (secs) Emacs has to be idle before automatic crossref display is done." | |
1276 :group 'reftex-viewing-cross-references | |
1277 :type 'number) | |
1278 | |
1279 (defcustom reftex-revisit-to-echo nil | |
1280 "*Non-nil means, automatic citation display will revisit files if necessary. | |
1281 When nil, citation display in echo area will only be active for cached | |
1282 entries and for BibTeX database files with live associated buffers." | |
1283 :group 'reftex-viewing-cross-references | |
1284 :type 'boolean) | |
1285 | |
1286 (defcustom reftex-cache-cite-echo t | |
1287 "*Non-nil means, the information displayed in the echo area for cite macros | |
1288 is cached and even saved along with the parsing information. The cache | |
1289 survives document scans. In order to clear it, use M-x reftex-reset-mode." | |
1290 :group 'reftex-viewing-cross-references | |
1291 :type 'boolean) | |
1292 | |
1293 (defcustom reftex-display-copied-context-hook nil | |
1294 "Normal Hook which is run before context is displayed anywhere. Designed | |
1295 for X-Symbol, but may have other uses as well." | |
1296 :group 'reftex-viewing-cross-references | |
1297 :group 'reftex-referencing-labels | |
1298 :type 'hook) | |
1299 | |
1300 ;; Finding Files -------------------------------------------------------- | |
1301 | |
1302 (defgroup reftex-finding-files nil | |
1303 "Finding files on search paths." | |
1304 :group 'reftex) | |
1305 | |
1306 (defcustom reftex-texpath-environment-variables '("TEXINPUTS") | |
1307 "*List of specifications how to retrieve the search path for TeX files. | |
1308 Several entries are possible. | |
1309 - If an element is the name of an environment variable, its content is used. | |
1310 - If an element starts with an exclamation mark, it is used as a command | |
1311 to retrieve the path. A typical command with the kpathsearch library would | |
1312 be `!kpsewhich -show-path=.tex'. | |
1313 - Otherwise the element itself is interpreted as a path. | |
1314 Multiple directories can be separated by the system dependent `path-separator'. | |
1315 Directories ending in `//' or `!!' will be expanded recursively. | |
1316 See also `reftex-use-external-file-finders'." | |
1317 :group 'reftex-finding-files | |
1318 :set 'reftex-set-dirty | |
1319 :type '(repeat (string :tag "Specification"))) | |
1320 | |
1321 (defcustom reftex-bibpath-environment-variables '("BIBINPUTS" "TEXBIB") | |
1322 "*List of specifications how to retrieve search path for .bib database files. | |
1323 Several entries are possible. | |
1324 - If an element is the name of an environment variable, its content is used. | |
1325 - If an element starts with an exclamation mark, it is used as a command | |
1326 to retrieve the path. A typical command with the kpathsearch library would | |
1327 be `!kpsewhich -show-path=.bib'. | |
1328 - Otherwise the element itself is interpreted as a path. | |
1329 Multiple directories can be separated by the system dependent `path-separator'. | |
1330 Directories ending in `//' or `!!' will be expanded recursively. | |
1331 See also `reftex-use-external-file-finders'." | |
1332 :group 'reftex-citation-support | |
1333 :group 'reftex-finding-files | |
1334 :set 'reftex-set-dirty | |
1335 :type '(repeat (string :tag "Specification"))) | |
1336 | |
1337 (defcustom reftex-file-extensions '(("tex" . (".tex" ".ltx")) | |
1338 ("bib" . (".bib"))) | |
1339 "*Association list with file extensions for different file types. | |
1340 This is a list of items, each item is like: (TYPE . (DEF-EXT OTHER-EXT ...)) | |
1341 | |
1342 TYPE: File type like \"bib\" or \"tex\". | |
1343 DEF-EXT: The default extension for that file type, like \".tex\" or \".bib\". | |
1344 OTHER-EXT: Any number of other legal extensions for this file type. | |
1345 | |
1346 When a files is searched and it does not have any of the legal extensions, | |
1347 we try the default extension first, and then the naked file name." | |
1348 :group 'reftex-finding-files | |
1349 :type '(repeat (cons (string :tag "File type") | |
1350 (repeat (string :tag "Extension"))))) | |
1351 | |
1352 (defcustom reftex-search-unrecursed-path-first t | |
1353 "*Non-nil means, search all specified directories before trying recursion. | |
1354 Thus, in a path \".//:/tex/\", search first \"./\", then \"/tex/\" and then | |
1355 all subdirectories of \"./\". If this option is nil, the subdirectories of | |
1356 \"./\" are searched before \"/tex/\". This is mainly for speed - most of the | |
1357 time the recursive path is for the system files and not for the user files. | |
1358 Set this to nil if the default makes RefTeX finding files with equal names | |
1359 in wrong sequence." | |
1360 :group 'reftex-finding-files | |
1361 :type 'boolean) | |
1362 | |
1363 (defcustom reftex-use-external-file-finders nil | |
1364 "*Non-nil means, use external programs to find files. | |
1365 Normally, RefTeX searches the paths given in the environment variables | |
1366 TEXINPUTS and BIBINPUTS to find TeX files and BibTeX database files. | |
1367 With this option turned on, it calls an external program specified in the | |
1368 option `reftex-external-file-finders' instead. As a side effect, | |
1369 the variables `reftex-texpath-environment-variables' and | |
1370 `reftex-bibpath-environment-variables' will be ignored." | |
1371 :group 'reftex-finding-files | |
1372 :type 'boolean) | |
1373 | |
1374 (defcustom reftex-external-file-finders '(("tex" . "kpsewhich -format=.tex %f") | |
1375 ("bib" . "kpsewhich -format=.bib %f")) | |
1376 "*Association list with external programs to call for finding files. | |
1377 Each entry is a cons cell (TYPE . PROGRAM). | |
1378 TYPE is either \"tex\" or \"bib\". PROGRAM is the external program to use with | |
1379 any arguments. %f will be replaced by the name of the file to be found. | |
1380 Note that these commands will be executed directly, not via a shell. | |
1381 Only relevant when `reftex-use-external-file-finders' is non-nil." | |
1382 :group 'reftex-finding-files | |
1383 :type '(repeat (cons (string :tag "File type") | |
1384 (string :tag "Program ")))) | |
1385 | |
1386 ;; Tuning the parser ---------------------------------------------------- | |
1387 | |
1388 (defgroup reftex-optimizations-for-large-documents nil | |
1389 "Configuration of parser speed and memory usage." | |
1390 :group 'reftex) | |
1391 | |
1392 (defcustom reftex-keep-temporary-buffers 1 | |
1393 "*Non-nil means, keep buffers created for parsing and lookup. | |
1394 RefTeX sometimes needs to visit files related to the current document. | |
1395 We distinguish files visited for | |
1396 PARSING: Parts of a multifile document loaded when (re)-parsing the document. | |
1397 LOOKUP: BibTeX database files and TeX files loaded to find a reference, | |
1398 to display label context, etc. | |
1399 The created buffers can be kept for later use, or be thrown away immediately | |
1400 after use, depending on the value of this variable: | |
1401 | |
1402 nil Throw away as much as possible. | |
1403 t Keep everything. | |
1404 1 Throw away buffers created for parsing, but keep the ones created | |
1405 for lookup. | |
1406 | |
1407 If a buffer is to be kept, the file is visited normally (which is potentially | |
1408 slow but will happen only once). | |
1409 If a buffer is to be thrown away, the initialization of the buffer depends | |
1410 upon the variable `reftex-initialize-temporary-buffers'." | |
1411 :group 'reftex-optimizations-for-large-documents | |
1412 :type '(choice | |
1413 (const :tag "Throw away everything" nil) | |
1414 (const :tag "Keep everything" t) | |
1415 (const :tag "Keep lookup buffers only" 1))) | |
1416 | |
1417 (defcustom reftex-initialize-temporary-buffers nil | |
1418 "*Non-nil means do initializations even when visiting file temporarily. | |
1419 When nil, RefTeX may turn off find-file hooks and other stuff to briefly | |
1420 visit a file. | |
1421 When t, the full default initializations are done (find-file-hook etc.). | |
1422 Instead of t or nil, this variable may also be a list of hook functions to | |
1423 do a minimal initialization." | |
1424 :group 'reftex-optimizations-for-large-documents | |
1425 :type '(choice | |
1426 (const :tag "Read files literally" nil) | |
1427 (const :tag "Fully initialize buffers" t) | |
1428 (repeat :tag "Hook functions" :value (nil) | |
1429 (function-item)))) | |
1430 | |
1431 (defcustom reftex-no-include-regexps '("\\.pstex_t\\'") | |
1432 "*List of regular expressions to exclude certain input files from parsing. | |
1433 If the name of a file included via \\include or \\input is matched by any | |
1434 of the regular expressions in this list, that file is not parsed by RefTeX." | |
1435 :group 'reftex-optimizations-for-large-documents | |
1436 :type '(repeat (regexp))) | |
1437 | |
1438 (defcustom reftex-enable-partial-scans nil | |
1439 "*Non-nil means, re-parse only 1 file when asked to re-parse. | |
1440 Re-parsing is normally requested with a `C-u' prefix to many RefTeX commands, | |
1441 or with the `r' key in menus. When this option is t in a multifile document, | |
1442 we will only parse the current buffer, or the file associated with the label | |
1443 or section heading near point in a menu. Requesting re-parsing of an entire | |
1444 multifile document then requires a `C-u C-u' prefix or the capital `R' key | |
1445 in menus." | |
1446 :group 'reftex-optimizations-for-large-documents | |
1447 :type 'boolean) | |
1448 | |
1449 (defcustom reftex-allow-automatic-rescan t | |
1450 "*Non-nil means, RefTeX may rescan the document when this seems necessary. | |
1451 Currently this applies only to rescanning after label insertion, when | |
1452 the new label cannot be inserted correctly into the internal label | |
1453 list." | |
1454 :group 'reftex-optimizations-for-large-documents | |
1455 :type 'boolean) | |
1456 | |
1457 (defcustom reftex-save-parse-info nil | |
1458 "*Non-nil means, save information gathered with parsing in a file. | |
1459 The file MASTER.rel in the same directory as MASTER.tex is used to save the | |
1460 information. When this variable is t, | |
1461 - accessing the parsing information for the first time in an editing session | |
1462 will read that file (if available) instead of parsing the document. | |
1463 - exiting Emacs or killing a buffer in reftex-mode will cause a new version | |
1464 of the file to be written." | |
1465 :group 'reftex-optimizations-for-large-documents | |
1466 :type 'boolean) | |
1467 | |
27192
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1468 (defcustom reftex-parse-file-extension ".rel" |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1469 "*File extension for the file in which parser information is stored. |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1470 This extension is added to the base name of the master file." |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1471 :group 'reftex-optimizations-for-large-documents |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1472 :type 'string) |
f70a80cecdd3
New version number.
Carsten Dominik <dominik@science.uva.nl>
parents:
27035
diff
changeset
|
1473 |
25280 | 1474 (defcustom reftex-use-multiple-selection-buffers nil |
1475 "*Non-nil means use a separate selection buffer for each label type. | |
1476 These buffers are kept from one selection to the next and need not to be | |
1477 created for each use - so the menu generally comes up faster. The | |
1478 selection buffers will be erased (and therefore updated) automatically | |
1479 when new labels in its category are added. See the variable | |
1480 `reftex-auto-update-selection-buffers'." | |
1481 :group 'reftex-optimizations-for-large-documents | |
1482 :group 'reftex-referencing-labels | |
1483 :type 'boolean) | |
1484 | |
1485 (defcustom reftex-auto-update-selection-buffers t | |
1486 "*Non-nil means, selection buffers will be updated automatically. | |
1487 When a new label is defined with `reftex-label', all selection buffers | |
1488 associated with that label category are emptied, in order to force an | |
1489 update upon next use. When nil, the buffers are left alone and have to be | |
1490 updated by hand, with the `g' key from the label selection process. | |
1491 The value of this variable will only have any effect when | |
1492 `reftex-use-multiple-selection-buffers' is non-nil." | |
1493 :group 'reftex-optimizations-for-large-documents | |
1494 :group 'reftex-referencing-labels | |
1495 :type 'boolean) | |
1496 | |
1497 ;; Fontification and Faces ---------------------------------------------- | |
1498 | |
1499 (defgroup reftex-fontification-configurations nil | |
1500 "Options concerning the faces used in RefTeX." | |
1501 :group 'reftex) | |
1502 | |
1503 (defcustom reftex-use-fonts t | |
1504 "*Non-nil means, use fonts in *toc* and selection buffers. | |
1505 Font-lock must be loaded as well to actually get fontified display. | |
1506 When changing this option, a rescan may be necessary to activate the change." | |
1507 :group 'reftex-fontification-configurations | |
1508 :type 'boolean) | |
1509 | |
1510 (defcustom reftex-refontify-context 1 | |
1511 "*Non-nil means, re-fontify the context in the label menu with font-lock. | |
1512 This slightly slows down the creation of the label menu. It is only necessary | |
1513 when you definitely want the context fontified. | |
1514 | |
1515 This option may have 3 different values: | |
1516 nil Never refontify. | |
1517 t Always refontify. | |
1518 1 Refontify when absolutely necessary, e.g. when old versions of X-Symbol. | |
1519 The option is ignored when `reftex-use-fonts' is nil." | |
1520 :group 'reftex-fontification-configurations | |
1521 :group 'reftex-referencing-labels | |
1522 :type '(choice | |
1523 (const :tag "Never" nil) | |
1524 (const :tag "Always" t) | |
1525 (const :tag "When necessary" 1))) | |
1526 | |
1527 (defcustom reftex-highlight-selection 'cursor | |
1528 "*Non-nil mean, highlight selected text in selection and *toc* buffers. | |
1529 Normally, the text near the cursor is the selected text, and it is | |
1530 highlighted. This is the entry most keys in the selction and *toc* | |
1531 buffers act on. However, if you mainly use the mouse to select an | |
1532 item, you may find it nice to have mouse-triggered highlighting | |
1533 instead or as well. The variable may have one of these values: | |
1534 | |
1535 nil No highlighting. | |
1536 cursor Highlighting is cursor driven. | |
1537 mouse Highlighting is mouse driven. | |
1538 both Both cursor and mouse trigger highlighting. | |
1539 | |
1540 Changing this variable requires to rebuild the selection and *toc* buffers | |
1541 to become effective (keys `g' or `r')." | |
1542 :group 'reftex-fontification-configurations | |
1543 :type '(choice | |
1544 (const :tag "Never" nil) | |
1545 (const :tag "Cursor driven" cursor) | |
1546 (const :tag "Mouse driven" mouse) | |
1547 (const :tag "Mouse and Cursor driven." both))) | |
1548 | |
1549 (defcustom reftex-cursor-selected-face 'highlight | |
1550 "Face name to highlight cursor selected item in toc and selection buffers. | |
1551 See also the variable `reftex-highlight-selection'." | |
1552 :group 'reftex-fontification-configurations | |
1553 :type 'symbol) | |
1554 (defcustom reftex-mouse-selected-face 'secondary-selection | |
1555 "Face name to highlight mouse selected item in toc and selection buffers. | |
1556 See also the variable `reftex-highlight-selection'." | |
1557 :group 'reftex-fontification-configurations | |
1558 :type 'symbol) | |
1559 (defcustom reftex-file-boundary-face 'font-lock-comment-face | |
1560 "Face name for file boundaries in selection buffer." | |
1561 :group 'reftex-fontification-configurations | |
1562 :type 'symbol) | |
1563 (defcustom reftex-label-face 'font-lock-constant-face | |
1564 "Face name for labels in selection buffer." | |
1565 :group 'reftex-fontification-configurations | |
1566 :type 'symbol) | |
1567 (defcustom reftex-section-heading-face 'font-lock-function-name-face | |
1568 "Face name for section headings in toc and selection buffers." | |
1569 :group 'reftex-fontification-configurations | |
1570 :type 'symbol) | |
1571 (defcustom reftex-toc-header-face 'font-lock-comment-face | |
1572 "Face name for the header of a toc buffer." | |
1573 :group 'reftex-fontification-configurations | |
1574 :type 'symbol) | |
1575 (defcustom reftex-bib-author-face 'font-lock-keyword-face | |
1576 "Face name for author names in bib selection buffer." | |
1577 :group 'reftex-fontification-configurations | |
1578 :type 'symbol) | |
1579 (defcustom reftex-bib-year-face 'font-lock-comment-face | |
1580 "Face name for year in bib selection buffer." | |
1581 :group 'reftex-fontification-configurations | |
1582 :type 'symbol) | |
1583 (defcustom reftex-bib-title-face 'font-lock-function-name-face | |
1584 "Face name for article title in bib selection buffer." | |
1585 :group 'reftex-fontification-configurations | |
1586 :type 'symbol) | |
1587 (defcustom reftex-bib-extra-face 'font-lock-comment-face | |
1588 "Face name for bibliographic information in bib selection buffer." | |
1589 :group 'reftex-fontification-configurations | |
1590 :type 'symbol) | |
1591 (defcustom reftex-select-mark-face 'bold | |
1592 "Face name for marked entries in the selection buffers." | |
1593 :group 'reftex-fontification-configurations | |
1594 :type 'symbol) | |
1595 (defcustom reftex-index-header-face 'font-lock-comment-face | |
1596 "Face name for the header of an index buffer." | |
1597 :group 'reftex-fontification-configurations | |
1598 :type 'symbol) | |
1599 (defcustom reftex-index-section-face 'font-lock-function-name-face | |
1600 "Face name for the start of a new letter section in the index." | |
1601 :group 'reftex-fontification-configurations | |
1602 :type 'symbol) | |
1603 (defcustom reftex-index-tag-face 'font-lock-keyword-face | |
1604 "Face name for index names (for multiple indices)." | |
1605 :group 'reftex-fontification-configurations | |
1606 :type 'symbol) | |
1607 (defcustom reftex-index-face 'font-lock-constant-face | |
1608 "Face name for index entries." | |
1609 :group 'reftex-fontification-configurations | |
1610 :type 'symbol) | |
1611 | |
1612 (defcustom reftex-pre-refontification-functions nil | |
1613 "X-Symbol specific hook. | |
1614 Functions get two arguments, the buffer from where the command started and a | |
1615 symbol indicating in what context the hook is called." | |
1616 :group 'reftex-fontification-configurations | |
1617 :type 'hook) | |
1618 | |
1619 ;; Miscellaneous configurations ----------------------------------------- | |
1620 | |
1621 (defgroup reftex-miscellaneous-configurations nil | |
1622 "Collection of further configurations." | |
1623 :group 'reftex) | |
1624 | |
1625 (defcustom reftex-extra-bindings nil | |
1626 "Non-nil means, make additional key bindings on startup. | |
1627 These extra bindings are located in the users `C-c letter' map." | |
1628 :group 'reftex-miscellaneous-configurations | |
1629 :type 'boolean) | |
1630 | |
1631 (defcustom reftex-plug-into-AUCTeX nil | |
1632 "*Plug-in flags for AUCTeX interface. | |
1633 This variable is a list of 4 boolean flags. When a flag is non-nil, | |
1634 RefTeX will | |
1635 | |
1636 - supply labels in new sections and environments (flag 1) | |
1637 - supply arguments for macros like `\\label'. (flag 2) | |
1638 - supply arguments for macros like `\\ref'. (flag 3) | |
1639 - supply arguments for macros like `\\cite'. (flag 4) | |
1640 - supply arguments for macros like `\\index'. (flag 5) | |
1641 | |
1642 You may also set the variable itself to t or nil in order to turn all | |
1643 plug-ins on or off, respectively. | |
1644 \\<LaTeX-mode-map>Supplying labels in new sections and environments applies when creating | |
1645 sections with \\[LaTeX-section] and environments with \\[LaTeX-environment]. | |
1646 Supplying macro arguments applies when you insert such a macro interactively | |
1647 with \\[TeX-insert-macro]. | |
1648 See the AUCTeX documentation for more information. | |
1649 RefTeX uses `fset' to take over the function calls. Changing the variable | |
1650 may require a restart of Emacs in order to become effective." | |
1651 :group 'reftex-miscellaneous-configurations | |
1652 :group 'LaTeX | |
1653 :type '(choice | |
1654 (const :tag "No plug-ins" nil) | |
1655 (const :tag "All possible plug-ins" t) | |
1656 (list | |
1657 :tag "Individual choice" | |
1658 :value (t t t t t) | |
1659 (boolean :tag "supply label in new sections and environments") | |
1660 (boolean :tag "supply argument for macros like `\\label' ") | |
1661 (boolean :tag "supply argument for macros like `\\ref' ") | |
1662 (boolean :tag "supply argument for macros like `\\cite' ") | |
1663 (boolean :tag "supply argument for macros like `\\index' ") | |
1664 ))) | |
1665 | |
1666 (defcustom reftex-allow-detached-macro-args nil | |
1667 "*Non-nil means, allow arguments of macros to be detached by whitespace. | |
1668 When this is t, `aaa' will be considered as argument of \\bb in the following | |
1669 construct: \\bbb [xxx] {aaa}." | |
1670 :group 'reftex-miscellaneous-configurations | |
1671 :type 'boolean) | |
1672 | |
1673 | |
1674 (defcustom reftex-load-hook nil | |
1675 "Hook which is being run when loading reftex.el." | |
1676 :group 'reftex-miscellaneous-configurations | |
1677 :type 'hook) | |
1678 | |
1679 (defcustom reftex-mode-hook nil | |
1680 "Hook which is being run when turning on RefTeX mode." | |
1681 :group 'reftex-miscellaneous-configurations | |
1682 :type 'hook) | |
1683 | |
1684 ;;; reftex-vars.el ends here |