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