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