1 ;;; reftex.el --- minor mode for doing \label, \ref, \cite, \index in LaTeX
2 ;; Copyright (C) 1997-2000, 2003-2012 Free Software Foundation, Inc.
4 ;; Author: Carsten Dominik <dominik@science.uva.nl>
5 ;; Maintainer: auctex-devel@gnu.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;---------------------------------------------------------------------------
28 ;; RefTeX is a minor mode with distinct support for \ref, \label, \cite,
29 ;; and \index commands in (multi-file) LaTeX documents.
30 ;; - A table of contents provides easy access to any part of a document.
31 ;; - Labels are created semi-automatically.
32 ;; - Definition context of labels is provided when creating a reference.
33 ;; - Citations are simplified with efficient database lookup.
34 ;; - Text phrases can be collected in a file, for later global indexing.
35 ;; - The index preview buffer helps to check and edit index entries.
41 ;; - If this file is part of an X/Emacs distribution, it is installed.
42 ;; - For XEmacs 21.x, you need to install the RefTeX plug-in package
43 ;; available from the XEmacs distribution sites.
44 ;; - If you have downloaded this file from the maintainers webpage, follow
45 ;; the instructions in the INSTALL file of the distribution.
47 ;; To turn RefTeX Mode on and off in a buffer, use `M-x reftex-mode'.
49 ;; To turn on RefTeX Mode for all LaTeX files, add the following lines
50 ;; to your .emacs file:
52 ;; (add-hook 'LaTeX-mode-hook 'turn-on-reftex) ; AUCTeX LaTeX mode
53 ;; (add-hook 'latex-mode-hook 'turn-on-reftex) ; Emacs latex mode
59 ;; See below for a short summary of how to use RefTeX.
61 ;; There is an extensive texinfo document describing RefTeX in detail.
62 ;; One way to view this documentation is `M-x reftex-info RET'.
64 ;; The documentation in various formats is also available at
66 ;; http://zon.astro.uva.nl/~dominik/Tools/
68 ;;---------------------------------------------------------------------------
73 ;; RefTeX is a specialized package for support of labels, references,
74 ;; citations, and the index in LaTeX. RefTeX wraps itself round 4 LaTeX
75 ;; macros: `\label', `\ref', `\cite', and `\index'. Using these macros
76 ;; usually requires looking up different parts of the document and
77 ;; searching through BibTeX database files. RefTeX automates these
78 ;; time-consuming tasks almost entirely. It also provides functions to
79 ;; display the structure of a document and to move around in this
82 ;; *Note Imprint::, for information about who to contact for help, bug
83 ;; reports or suggestions.
88 ;; RefTeX needs to access all files which are part of a multifile
89 ;; document, and the BibTeX database files requested by the
90 ;; `\bibliography' command. To find these files, RefTeX will require a
91 ;; search path, i.e. a list of directories to check. Normally this list
92 ;; is stored in the environment variables `TEXINPUTS' and `BIBINPUTS'
93 ;; which are also used by RefTeX. However, on some systems these
94 ;; variables do not contain the full search path. If RefTeX does not work
95 ;; for you because it cannot find some files, read *Note Finding Files::.
97 ;; Entering RefTeX Mode
98 ;; ====================
100 ;; To turn RefTeX Mode on and off in a particular buffer, use `M-x
101 ;; reftex-mode'. To turn on RefTeX Mode for all LaTeX files, add the
102 ;; following lines to your `.emacs' file:
104 ;; (add-hook 'LaTeX-mode-hook 'turn-on-reftex) ; with AUCTeX LaTeX mode
105 ;; (add-hook 'latex-mode-hook 'turn-on-reftex) ; with Emacs latex mode
107 ;; RefTeX in a Nutshell
108 ;; ====================
110 ;; 1. Table of Contents
111 ;; Typing `C-c =' (`reftex-toc') will show a table of contents of the
112 ;; document. This buffer can display sections, labels and index
113 ;; entries defined in the document. From the buffer, you can jump
114 ;; quickly to every part of your document. Press `?' to get help.
116 ;; 2. Labels and References
117 ;; RefTeX helps to create unique labels and to find the correct key
118 ;; for references quickly. It distinguishes labels for different
119 ;; environments, knows about all standard environments (and many
120 ;; others), and can be configured to recognize any additional labeled
121 ;; environments you have defined yourself (variable
122 ;; `reftex-label-alist').
125 ;; Type `C-c (' (`reftex-label') to insert a label at point.
126 ;; RefTeX will either
127 ;; - derive a label from context (default for section labels)
128 ;; - prompt for a label string (default for figures and
130 ;; - insert a simple label made of a prefix and a number (all
131 ;; other environments)
133 ;; Which labels are created how is configurable with the variable
134 ;; `reftex-insert-label-flags'.
136 ;; * Referencing Labels
137 ;; To make a reference, type `C-c )' (`reftex-reference'). This
138 ;; shows an outline of the document with all labels of a certain
139 ;; type (figure, equation,...) and some label context.
140 ;; Selecting a label inserts a `\ref{LABEL}' macro into the
144 ;; Typing `C-c [' (`reftex-citation') will let you specify a regular
145 ;; expression to search in current BibTeX database files (as
146 ;; specified in the `\bibliography' command) and pull out a list of
147 ;; matches for you to choose from. The list is _formatted_ and
148 ;; sorted. The selected article is referenced as `\cite{KEY}' (see
149 ;; the variable `reftex-cite-format' if you want to insert different
153 ;; RefTeX helps to enter index entries. It also compiles all entries
154 ;; into an alphabetically sorted `*Index*' buffer which you can use
155 ;; to check and edit the entries. RefTeX knows about the standard
156 ;; index macros and can be configured to recognize any additional
157 ;; macros you have defined (`reftex-index-macros'). Multiple indices
160 ;; * Creating Index Entries
161 ;; To index the current selection or the word at point, type
162 ;; `C-c /' (`reftex-index-selection-or-word'). The default macro
163 ;; `reftex-index-default-macro' will be used. For a more
164 ;; complex entry type `C-c <' (`reftex-index'), select any of
165 ;; the index macros and enter the arguments with completion.
167 ;; * The Index Phrases File (Delayed Indexing)
168 ;; Type `C-c \' (`reftex-index-phrase-selection-or-word') to add
169 ;; the current word or selection to a special _index phrase
170 ;; file_. RefTeX can later search the document for occurrences
171 ;; of these phrases and let you interactively index the matches.
173 ;; * Displaying and Editing the Index
174 ;; To display the compiled index in a special buffer, type `C-c
175 ;; >' (`reftex-display-index'). From that buffer you can check
176 ;; and edit all entries.
178 ;; 5. Viewing Cross-References
179 ;; When point is on the KEY argument of a cross-referencing macro
180 ;; (`\label', `\ref', `\cite', `\bibitem', `\index', and variations)
181 ;; or inside a BibTeX database entry, you can press `C-c &'
182 ;; (`reftex-view-crossref') to display corresponding locations in the
183 ;; document and associated BibTeX database files.
184 ;; When the enclosing macro is `\cite' or `\ref' and no other message
185 ;; occupies the echo area, information about the citation or label
186 ;; will automatically be displayed in the echo area.
188 ;; 6. Multifile Documents
189 ;; Multifile Documents are fully supported. The included files must
190 ;; have a file variable `TeX-master' or `tex-main-file' pointing to
191 ;; the master file. RefTeX provides cross-referencing information
192 ;; from all parts of the document, and across document borders
195 ;; 7. Document Parsing
196 ;; RefTeX needs to parse the document in order to find labels and
197 ;; other information. It does it automatically once and updates its
198 ;; list internally when `reftex-label' and `reftex-index' are used.
199 ;; To enforce reparsing, call any of the commands described above
200 ;; with a raw `C-u' prefix, or press the `r' key in the label
201 ;; selection buffer, the table of contents buffer, or the index
205 ;; If your major LaTeX mode is AUCTeX, RefTeX can cooperate with it
206 ;; (see variable `reftex-plug-into-AUCTeX'). AUCTeX contains style
207 ;; files which trigger appropriate settings in RefTeX, so that for
208 ;; many of the popular LaTeX packages no additional customizations
209 ;; will be necessary.
211 ;; 9. Useful Settings
212 ;; To make RefTeX faster for large documents, try these:
213 ;; (setq reftex-enable-partial-scans t)
214 ;; (setq reftex-save-parse-info t)
215 ;; (setq reftex-use-multiple-selection-buffers t)
217 ;; To integrate with AUCTeX, use
218 ;; (setq reftex-plug-into-AUCTeX t)
220 ;; To make your own LaTeX macro definitions known to RefTeX,
221 ;; customize the variables
222 ;; `reftex-label-alist' (for label macros/environments)
223 ;; `reftex-section-levels' (for sectioning commands)
224 ;; `reftex-cite-format' (for `\cite'-like macros)
225 ;; `reftex-index-macros' (for `\index'-like macros)
226 ;; `reftex-index-default-macro' (to set the default macro)
227 ;; If you have a large number of macros defined, you may want to write
228 ;; an AUCTeX style file to support them with both AUCTeX and RefTeX.
231 ;; Go ahead and use RefTeX. Use its menus until you have picked up
232 ;; the key bindings. For an overview of what you can do in each of
233 ;; the different special buffers, press `?'. Read the manual if you
234 ;; get stuck, of if you are curious what else might be available.
235 ;; The first part of the manual explains in a tutorial way how to use
236 ;; and customize RefTeX. The second part is a command and variable
239 ;;---------------------------------------------------------------------------
244 ;; Carsten Dominik <dominik@science.uva.nl>
246 ;; with contributions from Stephen Eglen
248 ;; RefTeX is bundled with Emacs and available as a plug-in package for
249 ;; XEmacs 21.x. If you need to install it yourself, you can find a
252 ;; http://zon.astro.uva.nl/~dominik/Tools/
256 ;; Thanks to the people on the Net who have used RefTeX and helped
257 ;; developing it with their reports. In particular thanks to
259 ;; Fran Burstall, Alastair Burt, Soren Dayton, Stephen Eglen,
260 ;; Karl Eichwalder, Peter Galbraith, Dieter Kraft, Kai Grossjohann,
261 ;; Frank Harrell, Adrian Lanz, Rory Molinari, Stefan Monnier,
262 ;; Laurent Mugnier, Sudeep Kumar Palat, Daniel Polani, Robin Socha,
263 ;; Richard Stanton, Allan Strand, Jan Vroonhof, Christoph Wedler,
266 ;; Finally thanks to Uwe Bolick who first got me (some years ago) into
267 ;; supporting LaTeX labels and references with an editor (which was
268 ;; MicroEmacs at the time).
270 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
276 (eval-when-compile (require 'cl
))
278 ;; Stuff that needs to be there when we use defcustom
283 (defvar reftex-tables-dirty t
284 "Flag showing if tables need to be re-computed.")
287 (defun reftex-set-dirty (symbol value
)
288 (setq reftex-tables-dirty t
)
292 ;;; =========================================================================
294 ;;; Configuration variables
296 (require 'reftex-vars
)
299 ;;; =========================================================================
301 ;;; Define the formal stuff for a minor mode named RefTeX.
304 (defconst reftex-version
"RefTeX version 4.31"
305 "Version string for RefTeX.")
307 (defvar reftex-mode-map
(make-sparse-keymap)
308 "Keymap for RefTeX mode.")
310 (defvar reftex-mode-menu nil
)
311 (defvar reftex-syntax-table nil
)
312 (defvar reftex-syntax-table-for-bib nil
)
314 (unless reftex-syntax-table
315 (setq reftex-syntax-table
(copy-syntax-table))
316 (modify-syntax-entry ?\
( "." reftex-syntax-table
)
317 (modify-syntax-entry ?\
) "." reftex-syntax-table
))
319 (unless reftex-syntax-table-for-bib
320 (setq reftex-syntax-table-for-bib
321 (copy-syntax-table reftex-syntax-table
))
322 (modify-syntax-entry ?
\' "." reftex-syntax-table-for-bib
)
323 (modify-syntax-entry ?
\" "." reftex-syntax-table-for-bib
)
324 (modify-syntax-entry ?\
[ "." reftex-syntax-table-for-bib
)
325 (modify-syntax-entry ?\
] "." reftex-syntax-table-for-bib
))
327 ;; The following definitions are out of place, but I need them here
328 ;; to make the compilation of reftex-mode not complain.
329 (defvar reftex-auto-view-crossref-timer nil
330 "The timer used for auto-view-crossref.")
331 (defvar reftex-toc-auto-recenter-timer nil
332 "The idle timer used to recenter the toc window.")
334 ;;; =========================================================================
338 (autoload 'reftex-parse-one
"reftex-parse"
339 "Re-parse this file." t
)
340 (autoload 'reftex-parse-all
"reftex-parse"
341 "Re-parse entire document." t
)
342 (autoload 'reftex-do-parse
"reftex-parse")
343 (autoload 'reftex-where-am-I
"reftex-parse")
344 (autoload 'reftex-init-section-numbers
"reftex-parse")
345 (autoload 'reftex-section-info
"reftex-parse")
346 (autoload 'reftex-section-number
"reftex-parse")
347 (autoload 'reftex-what-macro
"reftex-parse")
348 (autoload 'reftex-what-macro-safe
"reftex-parse")
349 (autoload 'reftex-index-info
"reftex-parse")
350 (autoload 'reftex-index-info-safe
"reftex-parse")
351 (autoload 'reftex-short-context
"reftex-parse")
352 (autoload 'reftex-what-environment
"reftex-parse")
353 (autoload 'reftex-what-special-env
"reftex-parse")
354 (autoload 'reftex-move-over-touching-args
"reftex-parse")
355 (autoload 'reftex-notice-new
"reftex-parse")
356 (autoload 'reftex-nth-arg
"reftex-parse")
357 (autoload 'reftex-locate-bibliography-files
"reftex-parse")
358 (autoload 'reftex-ensure-index-support
"reftex-parse")
359 (autoload 'reftex-everything-regexp
"reftex-parse")
362 ;;; =========================================================================
364 ;;; Labels and References
366 (autoload 'reftex-label-location
"reftex-ref")
367 (autoload 'reftex-label-info-update
"reftex-ref")
368 (autoload 'reftex-label-info
"reftex-ref")
369 (autoload 'reftex-label
"reftex-ref"
370 "Insert a unique label." t
)
371 (autoload 'reftex-reference
"reftex-ref"
372 "Make a LaTeX reference." t
)
373 (autoload 'reftex-varioref-vref
"reftex-ref"
374 "Make a varioref reference." t
)
375 (autoload 'reftex-fancyref-fref
"reftex-ref"
376 "Make a fancyref \\fref reference." t
)
377 (autoload 'reftex-fancyref-Fref
"reftex-ref"
378 "Make a fancyref \\Fref reference." t
)
379 (autoload 'reftex-show-label-location
"reftex-ref")
380 (autoload 'reftex-query-label-type
"reftex-ref")
381 (autoload 'reftex-goto-label
"reftex-ref"
382 "Prompt for label name and go to that location." t
)
384 ;;; =========================================================================
386 ;;; Table of contents
388 (autoload 'reftex-toc
"reftex-toc"
389 "Show the table of contents for the current document." t
)
390 (autoload 'reftex-toc-recenter
"reftex-toc"
391 "Display the TOC window and highlight line corresponding to current position." t
)
392 (autoload 'reftex-toggle-auto-toc-recenter
"reftex-toc"
393 "Toggle automatic recentering of TOC window." t
)
395 ;;; =========================================================================
397 ;;; BibTeX citations.
399 (autoload 'reftex-citep
"reftex-cite")
400 (autoload 'reftex-citet
"reftex-cite")
401 (autoload 'reftex-make-cite-echo-string
"reftex-cite")
402 (autoload 'reftex-get-bibfile-list
"reftex-cite")
403 (autoload 'reftex-pop-to-bibtex-entry
"reftex-cite")
404 (autoload 'reftex-end-of-bib-entry
"reftex-cite")
405 (autoload 'reftex-parse-bibtex-entry
"reftex-cite")
406 (autoload 'reftex-citation
"reftex-cite"
407 "Make a citation using BibTeX database files." t
)
408 (autoload 'reftex-default-bibliography
"reftex-cite")
409 (autoload 'reftex-bib-or-thebib
"reftex-cite")
410 (autoload 'reftex-create-bibtex-file
"reftex-cite")
412 ;;; =========================================================================
416 (autoload 'reftex-select-label-mode
"reftex-sel")
417 (autoload 'reftex-select-bib-mode
"reftex-sel")
418 (autoload 'reftex-find-start-point
"reftex-sel")
419 (autoload 'reftex-insert-docstruct
"reftex-sel")
420 (autoload 'reftex-get-offset
"reftex-sel")
421 (autoload 'reftex-select-item
"reftex-sel")
424 ;;; =========================================================================
428 (autoload 'reftex-index
"reftex-index"
429 "Query for an index macro and insert it along with its arguments." t
)
430 (autoload 'reftex-index-selection-or-word
"reftex-index"
431 "Put selection or the word near point into the default index macro." t
)
432 (autoload 'reftex-index-phrase-selection-or-word
"reftex-index"
433 "Put selection or the word near point into Index Phrases File." t
)
434 (autoload 'reftex-display-index
"reftex-index"
435 "Display a buffer with an index compiled from the current document." t
)
436 (autoload 'reftex-index-visit-phrases-buffer
"reftex-index"
437 "Visit the Index Phrases File." t
)
438 (autoload 'reftex-index-phrases-mode
"reftex-index"
439 "Major mode for managing the Index phrases of a LaTeX document." t
)
440 (autoload 'reftex-index-complete-tag
"reftex-index")
441 (autoload 'reftex-index-complete-key
"reftex-index")
442 (autoload 'reftex-index-show-entry
"reftex-index")
443 (autoload 'reftex-index-select-tag
"reftex-index")
446 ;;; =========================================================================
448 ;;; View cross references
450 (autoload 'reftex-view-crossref
"reftex-dcr"
451 "View cross reference of \\ref or \\cite macro at point." t
)
452 (autoload 'reftex-mouse-view-crossref
"reftex-dcr"
453 "View cross reference of \\ref or \\cite macro where you click." t
)
454 (autoload 'reftex-toggle-auto-view-crossref
"reftex-dcr")
455 (autoload 'reftex-view-crossref-from-bibtex
"reftex-dcr"
456 "View location in a LaTeX document which cites the BibTeX entry at point." t
)
459 ;;; =========================================================================
461 ;;; Operations on entire Multifile documents
463 (autoload 'reftex-create-tags-file
"reftex-global"
464 "Create TAGS file by running `etags' on the current document." t
)
465 (autoload 'reftex-grep-document
"reftex-global"
466 "Run grep query through all files related to this document." t
)
467 (autoload 'reftex-search-document
"reftex-global"
468 "Regexp search through all files of the current TeX document." t
)
469 (autoload 'reftex-query-replace-document
"reftex-global"
470 "Run a query-replace-regexp of FROM with TO over the entire TeX document." t
)
471 (autoload 'reftex-find-duplicate-labels
"reftex-global"
472 "Produce a list of all duplicate labels in the document." t
)
473 (autoload 'reftex-change-label
"reftex-global"
474 "Query replace FROM with TO in all \\label and \\ref commands." t
)
475 (autoload 'reftex-renumber-simple-labels
"reftex-global"
476 "Renumber all simple labels in the document to make them sequentially." t
)
477 (autoload 'reftex-save-all-document-buffers
"reftex-global"
478 "Save all documents associated with the current document." t
)
481 ;;; =========================================================================
485 (autoload 'reftex-arg-label
"reftex-auc")
486 (autoload 'reftex-arg-cite
"reftex-auc")
487 (autoload 'reftex-arg-index-tag
"reftex-auc")
488 (autoload 'reftex-arg-index
"reftex-auc")
489 (autoload 'reftex-plug-into-AUCTeX
"reftex-auc")
490 (autoload 'reftex-toggle-plug-into-AUCTeX
"reftex-auc"
491 "Toggle Interface between AUCTeX and RefTeX on and off." t
)
492 (autoload 'reftex-add-label-environments
"reftex-auc")
493 (autoload 'reftex-add-to-label-alist
"reftex-auc")
494 (autoload 'reftex-add-section-levels
"reftex-auc")
495 (autoload 'reftex-notice-new-section
"reftex-auc")
498 (defun turn-on-reftex ()
499 "Turn on RefTeX mode."
502 (put 'reftex-mode
:included
'(memq major-mode
'(latex-mode tex-mode
)))
503 (put 'reftex-mode
:menu-tag
"RefTeX Mode")
505 (define-minor-mode reftex-mode
507 With a prefix argument ARG, enable RefTeX mode if ARG is
508 positive, and disable it otherwise. If called from Lisp, enable
509 the mode if ARG is omitted or nil.
511 RefTeX mode is a buffer-local minor mode with distinct support
512 for \\label, \\ref and \\cite in LaTeX.
514 \\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing
515 capabilities is available with `\\[reftex-toc]'.
517 Labels can be created with `\\[reftex-label]' and referenced with `\\[reftex-reference]'.
518 When referencing, you get a menu with all labels of a given type and
519 context of the label definition. The selected label is inserted as a
522 Citations can be made with `\\[reftex-citation]' which will use a regular expression
523 to pull out a *formatted* list of articles from your BibTeX
524 database. The selected citation is inserted as a \\cite macro.
526 Index entries can be made with `\\[reftex-index-selection-or-word]' which indexes the word at point
527 or the current selection. More general index entries are created with
528 `\\[reftex-index]'. `\\[reftex-display-index]' displays the compiled index.
530 Most command have help available on the fly. This help is accessed by
531 pressing `?' to any prompt mentioning this feature.
533 Extensive documentation about RefTeX is available in Info format.
534 You can view this information with `\\[reftex-info]'.
537 Under X, these and other functions will also be available as `Ref' menu
540 ------------------------------------------------------------------------------"
541 :lighter
" Ref" :keymap reftex-mode-map
544 ;; Mode was turned on
545 (easy-menu-add reftex-mode-menu
)
546 (and reftex-plug-into-AUCTeX
547 (reftex-plug-into-AUCTeX))
548 (unless (get 'reftex-auto-view-crossref
'initialized
)
549 (and reftex-auto-view-crossref
550 (reftex-toggle-auto-view-crossref))
551 (put 'reftex-auto-view-crossref
'initialized t
))
552 (unless (get 'reftex-auto-recenter-toc
'initialized
)
553 (and (eq reftex-auto-recenter-toc t
)
554 (reftex-toggle-auto-toc-recenter))
555 (put 'reftex-auto-recenter-toc
'initialized t
))
557 ;; Prepare the special syntax tables.
558 (setq reftex-syntax-table
(copy-syntax-table (syntax-table)))
559 (modify-syntax-entry ?\
( "." reftex-syntax-table
)
560 (modify-syntax-entry ?\
) "." reftex-syntax-table
)
562 (setq reftex-syntax-table-for-bib
563 (copy-syntax-table reftex-syntax-table
))
564 (modify-syntax-entry ?
\' "." reftex-syntax-table-for-bib
)
565 (modify-syntax-entry ?
\" "." reftex-syntax-table-for-bib
)
566 (modify-syntax-entry ?\
[ "." reftex-syntax-table-for-bib
)
567 (modify-syntax-entry ?\
] "." reftex-syntax-table-for-bib
))
568 ;; Mode was turned off
569 (easy-menu-remove reftex-mode-menu
)))
571 (defvar reftex-docstruct-symbol
)
572 (defun reftex-kill-buffer-hook ()
573 "Save RefTeX's parse file for this buffer if the information has changed."
574 ;; Save the parsing information if it was modified.
575 ;; This function should be installed in `kill-buffer-hook'.
576 ;; We are careful to make sure nothing goes wrong in this function.
577 (when (and (boundp 'reftex-mode
) reftex-mode
578 (boundp 'reftex-save-parse-info
) reftex-save-parse-info
579 (boundp 'reftex-docstruct-symbol
) reftex-docstruct-symbol
580 (symbol-value reftex-docstruct-symbol
)
581 (get reftex-docstruct-symbol
'modified
))
584 (reftex-access-parse-file 'write
)
587 (defun reftex-kill-emacs-hook ()
588 "Call `reftex-kill-buffer-hook' on all buffers."
589 ;; This function should be installed in `kill-emacs-hook'.
591 (mapcar (lambda (buf)
593 (reftex-kill-buffer-hook))
596 ;;; =========================================================================
598 ;;; Silence warnings about variables in other packages.
600 (defvar LaTeX-section-hook
)
601 (defvar LaTeX-label-function
)
602 (defvar tex-main-file
)
603 (defvar outline-minor-mode
)
604 (defvar font-lock-mode
)
605 (defvar font-lock-keywords
)
606 (defvar font-lock-fontify-region-function
)
608 ;;; =========================================================================
610 ;;; Multibuffer Variables
612 ;; Technical notes: These work as follows: We keep just one list
613 ;; of labels for each master file - this can save a lot of memory.
614 ;; `reftex-master-index-list' is an alist which connects the true file name
615 ;; of each master file with the symbols holding the information on that
616 ;; document. Each buffer has local variables which point to these symbols.
618 ;; List of variables which handle the multifile stuff.
619 ;; This list is used to tie, untie, and reset these symbols.
620 (defconst reftex-multifile-symbols
621 '(reftex-docstruct-symbol))
623 ;; Alist connecting master file names with the corresponding lisp symbols.
624 (defvar reftex-master-index-list nil
)
626 ;; Last index used for a master file.
627 (defvar reftex-multifile-index
0)
629 ;; Variable holding the symbol with the label list of the document.
630 (defvar reftex-docstruct-symbol nil
)
631 (make-variable-buffer-local 'reftex-docstruct-symbol
)
633 (defun reftex-next-multifile-index ()
634 ;; Return the next free index for multifile symbols.
635 (incf reftex-multifile-index
))
637 (defun reftex-tie-multifile-symbols ()
638 ;; Tie the buffer-local symbols to globals connected with the master file.
639 ;; If the symbols for the current master file do not exist, they are created.
641 (let* ((master (file-truename (reftex-TeX-master-file)))
642 (index (assoc master reftex-master-index-list
))
643 (symlist reftex-multifile-symbols
)
644 symbol symname newflag
)
645 ;; Find the correct index.
648 (setq index
(cdr index
))
649 ;; Get a new index and add info to the alist.
650 (setq index
(reftex-next-multifile-index)
652 (push (cons master index
) reftex-master-index-list
))
654 ;; Get/create symbols and tie them.
656 (setq symbol
(car symlist
)
657 symlist
(cdr symlist
)
658 symname
(symbol-name symbol
))
659 (set symbol
(intern (concat symname
"-" (int-to-string index
))))
660 (put (symbol-value symbol
) :master-index index
)
661 ;; Initialize if new symbols.
663 (set (symbol-value symbol
) nil
)
664 (put (symbol-value symbol
) 'reftex-index-macros-style
'(default))))
666 ;; Return t if the symbols did already exist, nil when we've made them.
669 (defun reftex-untie-multifile-symbols ()
670 ;; Remove ties from multifile symbols, so that next use makes new ones.
671 (let ((symlist reftex-multifile-symbols
)
674 (setq symbol
(car symlist
)
675 symlist
(cdr symlist
))
678 (defun reftex-TeX-master-file ()
679 ;; Return the name of the master file associated with the current buffer.
680 ;; When AUCTeX is loaded, we will use it's more sophisticated method.
681 ;; We also support the default TeX and LaTeX modes by checking for a
682 ;; variable tex-main-file.
686 ((fboundp 'TeX-master-file
) ; AUCTeX is loaded. Use its mechanism.
689 (error (buffer-file-name))))
690 ((fboundp 'tex-main-file
) (tex-main-file)) ; Emacs LaTeX mode
691 ((boundp 'TeX-master
) ; The variable is defined - let's use it.
695 ((eq TeX-master
'shared
)
696 (setq TeX-master
(read-file-name "Master file: "
700 (setq TeX-master
(read-file-name "Master file: "
702 ((boundp 'tex-main-file
)
703 ;; This is the variable from the default TeX modes.
705 ((stringp tex-main-file
)
706 ;; ok, this must be it
709 ;; In this case, the buffer is its own master.
710 (buffer-file-name))))
712 ;; Know nothing about master file. Assume this is a master file.
713 (buffer-file-name)))))
716 (error "Need a filename for this buffer, please save it first"))
717 ((or (file-exists-p (concat master
".tex"))
718 (reftex-get-buffer-visiting (concat master
".tex")))
719 ;; Ahh, an extra .tex was missing...
720 (setq master
(concat master
".tex")))
721 ((or (file-exists-p master
)
722 (reftex-get-buffer-visiting master
))
723 ;; We either see the file, or have a buffer on it. OK.
726 ;; Use buffer file name.
727 (setq master
(buffer-file-name))))
728 (expand-file-name master
)))
730 (defun reftex-is-multi ()
731 ;; Tell if this is a multifile document. When not sure, say yes.
732 (let ((entry (assq 'is-multi
(symbol-value reftex-docstruct-symbol
))))
737 (defun reftex-set-cite-format (value)
738 "Set the document-local value of `reftex-cite-format'.
739 When such a value exists, it overwrites the setting given with
740 `reftex-cite-format'. See the documentation of `reftex-cite-format'
741 for possible values. This function should be used from AUCTeX style files."
742 (unless reftex-docstruct-symbol
743 (reftex-tie-multifile-symbols))
744 (when (and reftex-docstruct-symbol
745 (symbolp reftex-docstruct-symbol
))
746 (put reftex-docstruct-symbol
'reftex-cite-format value
)))
748 (defun reftex-get-cite-format ()
749 ;; Return the current citation format. Either the document-local value in
750 ;; reftex-cite-format-symbol, or the global value in reftex-cite-format.
751 (if (and reftex-docstruct-symbol
752 (symbolp reftex-docstruct-symbol
)
753 (get reftex-docstruct-symbol
'reftex-cite-format
))
754 (get reftex-docstruct-symbol
'reftex-cite-format
)
757 (defun reftex-add-index-macros (entry-list)
758 "Add index macro descriptions to `reftex-index-macros-style'.
759 The format of ENTRY-LIST is exactly like `reftex-index-macros'. See there
761 This function makes it possible to support RefTeX from AUCTeX style files.
762 The entries in ENTRY-LIST will be processed after the user settings in
763 `reftex-index-entries', and before the defaults. Any changes made to
764 `reftex-label-alist-style' will raise a flag to the effect that
765 the label information is recompiled on next use."
766 (unless reftex-docstruct-symbol
767 (reftex-tie-multifile-symbols))
768 (when (and reftex-docstruct-symbol
769 (symbolp reftex-docstruct-symbol
))
770 (let ((list (get reftex-docstruct-symbol
'reftex-index-macros-style
))
773 (setq entry
(pop entry-list
))
774 ;; When it is a symbol, remove all other symbols
776 (not (memq entry list
))
777 (setq list
(reftex-remove-symbols-from-list list
)))
778 ;; Add to list unless already member
779 (unless (member entry list
)
780 (setq reftex-tables-dirty t
784 (put reftex-docstruct-symbol
'reftex-index-macros-style list
)))))
786 ;;; =========================================================================
788 ;;; Functions to compile the tables, reset the mode etc.
790 ;; The following constants are derived from `reftex-label-alist'.
792 ;; Prompt used for label type queries directed to the user.
793 (defvar reftex-type-query-prompt nil
)
795 ;; Help string for label type queries.
796 (defvar reftex-type-query-help nil
)
798 ;; Alist relating label type to reference format.
799 (defvar reftex-typekey-to-format-alist nil
)
801 ;; Alist relating label type to label prefix.
802 (defvar reftex-typekey-to-prefix-alist nil
)
804 ;; Alist relating environments or macros to label type and context regexp.
805 (defvar reftex-env-or-mac-alist nil
)
807 ;; List of special environment parser functions
808 (defvar reftex-special-env-parsers nil
)
810 ;; List of macros carrying a label.
811 (defvar reftex-label-mac-list nil
)
813 ;; List of environments carrying a label.
814 (defvar reftex-label-env-list nil
)
816 ;; List of all typekey letters in use.
817 (defvar reftex-typekey-list nil
)
819 ;; Alist relating magic words to a label type.
820 (defvar reftex-words-to-typekey-alist nil
)
821 ;; Alist relating label prefixes to a label type.
822 (defvar reftex-prefix-to-typekey-alist nil
)
824 ;; The last list-of-labels entry used in a reference.
825 (defvar reftex-last-used-reference
(list nil nil nil nil
))
827 ;; Alist relating index macros to other info.
828 (defvar reftex-key-to-index-macro-alist nil
)
829 ;; Prompt for index macro queries
830 (defvar reftex-query-index-macro-prompt nil
)
831 ;; Help string for index macro queries
832 (defvar reftex-query-index-macro-help nil
)
834 ;; The message when follow-mode is suspended
835 (defvar reftex-no-follow-message
836 "No follow-mode into unvisited file. Press SPC to visit it.")
837 (defvar reftex-no-info-message
838 "%s: info not available, use `\\[reftex-view-crossref]' to get it.")
840 ;; Global variables used for communication between functions.
841 (defvar reftex-default-context-position nil
)
842 (defvar reftex-location-start nil
)
843 (defvar reftex-call-back-to-this-buffer nil
)
844 (defvar reftex-select-return-marker
(make-marker))
845 (defvar reftex-active-toc nil
)
846 (defvar reftex-tex-path nil
)
847 (defvar reftex-bib-path nil
)
848 (defvar reftex-select-marked nil
)
849 (defvar reftex-last-follow-point nil
)
850 (defvar reftex-latex-syntax-table nil
)
851 (defvar reftex-prefix nil
)
852 (defvar reftex-section-levels-all nil
)
853 (defvar reftex-buffers-with-changed-invisibility nil
)
854 (defvar reftex-callback-fwd t
)
855 (defvar reftex-last-toc-master nil
856 "Stores the name of the tex file that `reftex-toc' was last run on.")
857 ;; Marker for return point from recursive edit
858 (defvar reftex-recursive-edit-marker
(make-marker))
860 ;; List of buffers created temporarily for lookup, which should be killed.
861 (defvar reftex-buffers-to-kill nil
)
863 ;; Regexp to find anything.
864 (defvar reftex-section-regexp nil
)
865 (defvar reftex-section-or-include-regexp nil
)
866 (defvar reftex-index-macro-regexp nil
)
867 (defvar reftex-index-level-re nil
)
868 (defvar reftex-index-key-end-re nil
)
869 (defvar reftex-find-index-entry-regexp-format nil
)
870 (defvar reftex-everything-regexp nil
)
871 (defvar reftex-everything-regexp-no-index nil
)
872 (defvar reftex-index-re nil
)
873 (defvar reftex-find-citation-regexp-format
874 "\\\\\\([a-zA-Z]*cite[*a-zA-Z]*\\*?\\|bibentry\\)\\(\\[[^]]*\\]\\|{[^}]*}\\)*{\\([^}]*,\\)?\\(%s\\)[},]")
875 (defvar reftex-find-reference-format
876 "\\\\\\(ref[a-zA-Z]*\\|[a-zA-Z]*ref\\(range\\)?\\)\\*?\\(\\[[^]]*\\]\\|{[^}]*}\\)*{\\(%s\\)}")
877 (defvar reftex-macros-with-labels nil
)
878 (defvar reftex-macros-with-index nil
)
879 (defvar reftex-index-macro-alist nil
)
880 (defvar reftex-find-label-regexp-format nil
)
881 (defvar reftex-find-label-regexp-format2 nil
)
883 (defvar reftex-memory nil
884 "Memorizes old variable values to indicate changes in these variables.")
886 ;; A list of all variables in the cache.
887 ;; The cache is used to save the compiled versions of some variables.
888 (defconst reftex-cache-variables
889 '(reftex-memory ;; This MUST ALWAYS be the first!
892 reftex-section-levels-all
895 reftex-env-or-mac-alist
896 reftex-special-env-parsers
897 reftex-macros-with-labels
898 reftex-label-mac-list
899 reftex-label-env-list
901 reftex-typekey-to-format-alist
902 reftex-typekey-to-prefix-alist
903 reftex-words-to-typekey-alist
904 reftex-prefix-to-typekey-alist
905 reftex-type-query-prompt
906 reftex-type-query-help
909 reftex-index-macro-alist
910 reftex-macros-with-index
911 reftex-query-index-macro-prompt
912 reftex-query-index-macro-help
913 reftex-key-to-index-macro-alist
915 ;; Regular expressions
916 reftex-section-regexp
917 reftex-section-or-include-regexp
919 reftex-everything-regexp
920 reftex-everything-regexp-no-index
921 reftex-find-label-regexp-format
922 reftex-find-label-regexp-format2
923 reftex-find-index-entry-regexp-format
926 (defun reftex-ensure-compiled-variables ()
927 ;; Recompile the label alist when necessary
928 (let* ((mem reftex-memory
)
929 (cache (get reftex-docstruct-symbol
'reftex-cache
))
931 (alist reftex-label-alist
)
932 (levels (get reftex-docstruct-symbol
'reftex-section-levels
))
933 (style (get reftex-docstruct-symbol
'reftex-label-alist-style
))
934 (default reftex-default-label-alist-entries
)
935 (index reftex-index-macros
)
936 (istyle (get reftex-docstruct-symbol
'reftex-index-macros-style
)))
938 (reftex-tables-dirty (reftex-compile-variables))
939 ((and (eq alist
(nth 0 mem
))
940 (eq levels
(nth 1 mem
))
941 (eq style
(nth 2 mem
))
942 (eq default
(nth 3 mem
))
943 (eq index
(nth 4 mem
))
944 (eq istyle
(nth 5 mem
)))) ;; everything is OK
945 ((and (eq alist
(nth 0 cmem
))
946 (eq levels
(nth 1 cmem
))
947 (eq style
(nth 2 cmem
))
948 (eq default
(nth 2 cmem
))
949 (eq index
(nth 4 cmem
))
950 (eq istyle
(nth 5 cmem
)))
952 (message "Restoring cache")
953 (mapcar (lambda (sym) (set sym
(pop cache
))) reftex-cache-variables
))
954 (t (reftex-compile-variables)))))
956 (defun reftex-reset-mode ()
958 This will re-compile the configuration information and remove all
959 current scanning information and the parse file to enforce a rescan
963 ;; Reset the file search path variables
964 (loop for prop in
'(status master-dir recursive-path rec-type
) do
965 (put 'reftex-tex-path prop nil
)
966 (put 'reftex-bib-path prop nil
))
968 ;; Kill temporary buffers associated with RefTeX - just in case they
969 ;; were not cleaned up properly
971 (let ((buffer-list '("*RefTeX Help*" "*RefTeX Select*"
972 "*Duplicate Labels*" "*toc*" " *RefTeX-scratch*"))
974 (while (setq buf
(pop buffer-list
))
977 (reftex-erase-all-selection-and-index-buffers))
979 ;; Make sure the current document will be rescanned soon.
980 (reftex-reset-scanning-information)
982 ;; Remove any parse info file
983 (reftex-access-parse-file 'kill
)
985 ;; Plug functions into AUCTeX if the user option says so.
986 (and reftex-plug-into-AUCTeX
987 (reftex-plug-into-AUCTeX))
989 (reftex-compile-variables))
992 (defun reftex-reset-scanning-information ()
993 "Reset the symbols containing information from buffer scanning.
994 This enforces rescanning the buffer on next use."
995 (if (string= reftex-last-toc-master
(reftex-TeX-master-file))
996 (reftex-erase-buffer "*toc*"))
997 (let ((symlist reftex-multifile-symbols
)
1000 (setq symbol
(car symlist
)
1001 symlist
(cdr symlist
))
1002 (if (and (symbolp (symbol-value symbol
))
1003 (not (null (symbol-value symbol
))))
1004 (set (symbol-value symbol
) nil
)))))
1006 (defun reftex-erase-all-selection-and-index-buffers ()
1007 ;; Remove all selection buffers associated with current document.
1010 (reftex-erase-buffer (reftex-make-selection-buffer-name type
)))
1011 reftex-typekey-list
)
1012 ;; Kill all index buffers
1015 (reftex-kill-buffer (reftex-make-index-buffer-name tag
)))
1016 (cdr (assoc 'index-tags
(symbol-value reftex-docstruct-symbol
)))))
1018 (defun reftex-compile-variables ()
1019 ;; Compile the information in reftex-label-alist & Co.
1021 (message "Compiling label environment definitions...")
1023 ;; Update AUCTeX style information
1024 (when (and (featurep 'tex-site
) (fboundp 'TeX-update-style
))
1025 (condition-case nil
(TeX-update-style) (error nil
)))
1027 ;; Record that we have done this, and what we have used.
1028 (setq reftex-tables-dirty nil
)
1030 (list reftex-label-alist
1031 (get reftex-docstruct-symbol
'reftex-section-levels
)
1032 (get reftex-docstruct-symbol
'reftex-label-alist-style
)
1033 reftex-default-label-alist-entries
1035 (get reftex-docstruct-symbol
'reftex-index-macros-style
)))
1037 ;; Compile information in reftex-label-alist
1038 (let ((all (reftex-uniquify-by-car
1039 (reftex-splice-symbols-into-list
1040 (append reftex-label-alist
1041 (get reftex-docstruct-symbol
1042 'reftex-label-alist-style
)
1043 reftex-default-label-alist-entries
)
1044 reftex-label-alist-builtin
)
1046 (all-index (reftex-uniquify-by-car
1047 (reftex-splice-symbols-into-list
1048 (append reftex-index-macros
1049 (get reftex-docstruct-symbol
1050 'reftex-index-macros-style
)
1052 reftex-index-macros-builtin
)))
1053 entry env-or-mac typekeychar typekey prefix context word
1054 fmt reffmt labelfmt wordlist qh-list macros-with-labels
1055 nargs nlabel opt-args cell sum i
1056 macro verify repeat nindex tag key toc-level toc-levels
)
1058 (setq reftex-words-to-typekey-alist nil
1059 reftex-prefix-to-typekey-alist
1060 '(("sec:" .
"s") ("cha:" .
"s") ("chap:" .
"s"))
1061 reftex-typekey-list nil
1062 reftex-typekey-to-format-alist nil
1063 reftex-typekey-to-prefix-alist nil
1064 reftex-env-or-mac-alist nil
1065 reftex-label-env-list nil
1066 reftex-label-mac-list nil
)
1069 (setq entry
(car all
)
1070 env-or-mac
(car entry
)
1073 (if (null env-or-mac
)
1074 (setq env-or-mac
""))
1075 (if (stringp (car entry
))
1076 ;; This is before version 2.00 - convert entry to new format
1077 ;; This is just to keep old users happy
1078 (setq entry
(cons (string-to-char (car entry
))
1079 (cons (concat (car entry
) ":")
1081 (setq typekeychar
(nth 0 entry
)
1082 typekey
(if typekeychar
(char-to-string typekeychar
) nil
)
1083 prefix
(nth 1 entry
)
1085 context
(nth 3 entry
)
1086 wordlist
(nth 4 entry
)
1087 toc-level
(nth 5 entry
))
1088 (if (stringp wordlist
)
1089 ;; This is before version 2.04 - convert to new format
1090 (setq wordlist
(nthcdr 4 entry
)))
1092 (if (and (stringp fmt
)
1093 (string-match "@" fmt
))
1094 ;; Special syntax for specifying a label format
1095 (setq fmt
(split-string fmt
"@+"))
1096 (setq fmt
(list "\\label{%s}" fmt
)))
1097 (setq labelfmt
(car fmt
)
1099 ;; Note a new typekey
1101 (add-to-list 'reftex-typekey-list typekey
))
1102 (if (and typekey prefix
1103 (not (assoc prefix reftex-prefix-to-typekey-alist
)))
1104 (add-to-list 'reftex-prefix-to-typekey-alist
1105 (cons prefix typekey
)))
1106 (if (and typekey prefix
1107 (not (assoc typekey reftex-typekey-to-prefix-alist
)))
1108 (add-to-list 'reftex-typekey-to-prefix-alist
1109 (cons typekey prefix
)))
1110 ;; Check if this is a macro or environment
1112 ((symbolp env-or-mac
)
1113 ;; A special parser function
1114 (unless (fboundp env-or-mac
)
1115 (message "Warning: %s does not seem to be a valid function"
1117 (setq nargs nil nlabel nil opt-args nil
)
1118 (add-to-list 'reftex-special-env-parsers env-or-mac
)
1119 (setq env-or-mac
(symbol-name env-or-mac
)))
1120 ((string-match "\\`\\\\" env-or-mac
)
1122 (let ((result (reftex-parse-args env-or-mac
)))
1123 (setq env-or-mac
(or (first result
) env-or-mac
)
1124 nargs
(second result
)
1125 nlabel
(third result
)
1126 opt-args
(fourth result
))
1127 (if nlabel
(add-to-list 'macros-with-labels env-or-mac
)))
1128 (if typekey
(add-to-list 'reftex-label-mac-list env-or-mac
)))
1130 ;; It's an environment
1131 (setq nargs nil nlabel nil opt-args nil
)
1132 (cond ((string= env-or-mac
"any"))
1133 ((string= env-or-mac
""))
1134 ((string= env-or-mac
"section"))
1136 (add-to-list 'reftex-label-env-list env-or-mac
)
1138 (let ((string (format "begin{%s}" env-or-mac
)))
1139 (or (assoc string toc-levels
)
1140 (push (cons string toc-level
) toc-levels
))))))))
1141 ;; Translate some special context cases
1142 (when (assq context reftex-default-context-regexps
)
1145 (cdr (assq context reftex-default-context-regexps
))
1146 (regexp-quote env-or-mac
))))
1147 ;; See if this is the first format for this typekey
1149 (not (assoc typekey reftex-typekey-to-format-alist
))
1150 (push (cons typekey reffmt
) reftex-typekey-to-format-alist
))
1151 ;; See if this is the first definition for this env-or-mac
1152 (and (not (string= env-or-mac
"any"))
1153 (not (string= env-or-mac
""))
1154 (not (assoc env-or-mac reftex-env-or-mac-alist
))
1155 (push (list env-or-mac typekey context labelfmt
1156 nargs nlabel opt-args
)
1157 reftex-env-or-mac-alist
))
1158 ;; Are the magic words regular expressions? Quote normal words.
1159 (if (eq (car wordlist
) 'regexp
)
1160 (setq wordlist
(cdr wordlist
))
1161 (setq wordlist
(mapcar 'regexp-quote wordlist
)))
1162 ;; Remember the first association of each word.
1163 (while (stringp (setq word
(pop wordlist
)))
1164 (or (assoc word reftex-words-to-typekey-alist
)
1165 (push (cons word typekey
) reftex-words-to-typekey-alist
)))
1167 ((string= "" env-or-mac
) nil
)
1168 ((setq cell
(assoc typekey qh-list
))
1169 (push env-or-mac
(cdr cell
)))
1171 (push (list typekey env-or-mac
) qh-list
)))))
1173 (setq reftex-typekey-to-prefix-alist
1174 (nreverse reftex-typekey-to-prefix-alist
))
1176 ;; Prepare the typekey query prompt and help string.
1180 (string< (downcase (car x1
)) (downcase (car x2
))))))
1181 (setq reftex-type-query-prompt
1182 (concat "Label type: ["
1183 (mapconcat (lambda(x) (format "%s" (car x
)))
1186 ;; In the help string, we need to wrap lines...
1187 (setq reftex-type-query-help
1189 "SELECT A LABEL TYPE:\n--------------------\n"
1195 (mapconcat (lambda(env)
1196 (setq sum
(+ sum
(length env
)))
1200 (concat "\n " env
)))
1204 ;; Convert magic words to regular expressions. We make regular expressions
1205 ;; which allow for some chars from the ref format to be in the buffer.
1206 ;; These characters will be seen and removed.
1207 (setq reftex-words-to-typekey-alist
1212 fmt
(cdr (assoc typekey reftex-typekey-to-format-alist
)))
1213 (setq word
(concat "\\W\\(" word
"[ \t\n\r]*\\)\\("))
1215 (while (and (< i
10) ; maximum number of format chars allowed
1217 (not (member (aref fmt i
) '(?%
))))
1218 (setq word
(concat word
"\\|" (regexp-quote
1219 (substring fmt
0 (1+ i
)))))
1221 (cons (concat word
"\\)\\=") typekey
))
1222 (nreverse reftex-words-to-typekey-alist
)))
1224 ;; Parse the index macros
1225 (setq reftex-index-macro-alist nil
1226 reftex-key-to-index-macro-alist nil
1227 reftex-macros-with-index nil
)
1229 (setq entry
(car all-index
)
1233 prefix
(or (nth 3 entry
) "")
1234 verify
(nth 4 entry
)
1235 ;; For repeat, we need to be compatible with older code
1236 ;; This information used to be given only for the default macro,
1237 ;; but later we required to have it for *every* index macro
1238 repeat
(cond ((> (length entry
) 5) (nth 5 entry
))
1239 ((and (eq key
(car reftex-index-default-macro
))
1240 (> (length reftex-index-default-macro
) 2))
1241 ;; User has old setting - respect it
1242 (nth 2 reftex-index-default-macro
))
1244 all-index
(cdr all-index
))
1245 (let ((result (reftex-parse-args macro
)))
1246 (setq macro
(or (first result
) macro
)
1247 nargs
(second result
)
1248 nindex
(third result
)
1249 opt-args
(fourth result
))
1250 (unless (member macro reftex-macros-with-index
)
1252 (push (list macro tag prefix verify nargs nindex opt-args repeat
)
1253 reftex-index-macro-alist
)
1254 (or (assoc key reftex-key-to-index-macro-alist
)
1255 (push (list key macro
) reftex-key-to-index-macro-alist
))
1256 (push macro reftex-macros-with-index
))))
1257 ;; Make the prompt and help string for index macros query
1258 (setq reftex-key-to-index-macro-alist
1259 (sort reftex-key-to-index-macro-alist
1260 (lambda (a b
) (< (downcase (car a
)) (downcase (car b
))))))
1261 (setq reftex-query-index-macro-prompt
1262 (concat "Index macro: ["
1263 (mapconcat (lambda (x) (char-to-string (car x
)))
1264 reftex-key-to-index-macro-alist
"")
1267 reftex-query-index-macro-help
1269 "SELECT A MACRO:\n---------------\n"
1272 (format "[%c] %-20.20s%s" (car x
) (nth 1 x
)
1273 (if (= 0 (mod (incf i
) 3)) "\n" "")))
1274 reftex-key-to-index-macro-alist
"")))
1276 ;; Make the full list of section levels
1277 (setq reftex-section-levels-all
1279 (get reftex-docstruct-symbol
'reftex-section-levels
)
1280 reftex-section-levels
))
1282 ;; Calculate the regular expressions
1284 ; (wbol "\\(\\`\\|[\n\r]\\)[ \t]*")
1285 (wbol "\\(^\\)[ \t]*") ; Need to keep the empty group because
1286 ;;; because match number are hard coded
1287 (label-re "\\\\label{\\([^}]*\\)}")
1288 (include-re (concat wbol
1290 (mapconcat 'identity
1291 reftex-include-file-commands
"\\|")
1292 "\\)[{ \t]+\\([^} \t\n\r]+\\)"))
1294 (concat wbol
"\\\\\\("
1295 (mapconcat (lambda (x) (regexp-quote (car x
)))
1296 reftex-section-levels-all
"\\|")
1297 "\\)\\*?\\(\\[[^]]*\\]\\)?[[{ \t\r\n]"))
1298 (appendix-re (concat wbol
"\\(\\\\appendix\\)"))
1300 (if macros-with-labels
1302 (mapconcat 'regexp-quote macros-with-labels
"\\|")
1307 (mapconcat 'regexp-quote reftex-macros-with-index
"\\|")
1309 (find-index-re-format
1311 (mapconcat 'regexp-quote reftex-macros-with-index
"\\|")
1312 "\\)\\([[{][^]}]*[]}]\\)*[[{]\\(%s\\)[]}]"))
1313 (find-label-re-format
1315 (mapconcat 'regexp-quote
(append '("\\label")
1316 macros-with-labels
) "\\|")
1317 "\\)\\([[{][^]}]*[]}]\\)*[[{]\\(%s\\)[]}]"))
1319 (regexp-quote (nth 0 reftex-index-special-chars
)))
1320 (index-key-end-re ;; ^]- not allowed
1321 (concat "[^" (nth 3 reftex-index-special-chars
) "]"
1322 "[" (nth 1 reftex-index-special-chars
)
1323 (nth 2 reftex-index-special-chars
) "]"))
1325 (setq reftex-section-regexp section-re
1326 reftex-section-or-include-regexp
1327 (concat section-re
"\\|" include-re
)
1328 reftex-everything-regexp
1329 (concat label-re
"\\|" section-re
"\\|" include-re
1332 (if macros-with-labels
"\\|" "") macro-re
)
1333 reftex-everything-regexp-no-index
1334 (concat label-re
"\\|" section-re
"\\|" include-re
1336 "\\|" "\\(\\\\6\\\\3\\\\1\\)" ; This is unlikely to match
1337 (if macros-with-labels
"\\|" "") macro-re
)
1338 reftex-index-re index-re
1339 reftex-index-level-re index-level-re
1340 reftex-index-key-end-re index-key-end-re
1341 reftex-macros-with-labels macros-with-labels
1342 reftex-find-index-entry-regexp-format find-index-re-format
1343 reftex-find-label-regexp-format find-label-re-format
1344 reftex-find-label-regexp-format2
1345 "\\([]} \t\n\r]\\)\\([[{]\\)\\(%s\\)[]}]")
1346 (message "Compiling label environment definitions...done")))
1347 (put reftex-docstruct-symbol
'reftex-cache
1348 (mapcar 'symbol-value reftex-cache-variables
)))
1350 (defun reftex-parse-args (macro)
1351 ;; Return a list of macro name, nargs, arg-nr which is label and a list of
1352 ;; optional argument indices.
1353 (if (string-match "[[{]\\*?[]}]" macro
)
1355 (let ((must-match (substring macro
0 (match-beginning 0)))
1356 (args (substring macro
(match-beginning 0)))
1357 opt-list nlabel
(cnt 0))
1358 (while (string-match "\\`[[{]\\(\\*\\)?[]}]" args
)
1360 (when (eq ?\
[ (string-to-char args
))
1361 (push cnt opt-list
))
1362 (when (and (match-end 1)
1365 (setq args
(substring args
(match-end 0))))
1366 (list must-match cnt nlabel opt-list
)))
1369 ;;; =========================================================================
1371 ;;; Accessing the parse information
1373 (defun reftex-access-scan-info (&optional rescan file
)
1374 "Ensure access to the scanning info for the current file."
1375 ;; When the multifile symbols are not yet tied,
1376 ;; tie them. When they are empty or RESCAN is non-nil, scan the document.
1377 ;; But, when RESCAN is -1, don't rescan even if docstruct is empty.
1378 ;; When FILE is non-nil, parse only from that file.
1380 ;; Error out in a buffer without a file.
1381 (if (and reftex-mode
1382 (not (buffer-file-name)))
1383 (error "RefTeX works only in buffers visiting a file"))
1385 ;; Make sure we have the symbols tied
1386 (if (eq reftex-docstruct-symbol nil
)
1387 ;; Symbols are not yet tied: Tie them.
1388 (reftex-tie-multifile-symbols))
1390 (reftex-ensure-compiled-variables)
1392 (when (or (null (symbol-value reftex-docstruct-symbol
))
1393 (member rescan
'(t 1 (4) (16))))
1394 ;; The docstruct will change: Remove selection buffers.
1396 (reftex-erase-buffer "*toc*")
1397 (reftex-erase-all-selection-and-index-buffers)))
1399 (if (and (null (symbol-value reftex-docstruct-symbol
))
1400 (not (member rescan
'(t 1 (4) (16))))
1401 reftex-save-parse-info
)
1402 ;; Try to read the stuff from a file
1403 (reftex-access-parse-file 'read
))
1406 ((equal rescan -
1)) ;; We are not allowed to scan.
1407 ((not (symbol-value reftex-docstruct-symbol
))
1408 ;; Scan the whole document
1409 (reftex-do-parse 1 file
))
1410 ((member rescan
'(t 1 (4) (16)))
1411 ;; Scan whatever was required by the caller.
1412 (reftex-do-parse rescan file
))))
1414 (defun reftex-scanning-info-available-p ()
1415 "Is the scanning info about the current document available?"
1416 (unless reftex-docstruct-symbol
1417 (reftex-tie-multifile-symbols))
1418 (and (symbolp reftex-docstruct-symbol
)
1419 (symbol-value reftex-docstruct-symbol
)
1422 (defun reftex-silence-toc-markers (list n
)
1423 ;; Set all toc markers in the first N entries in list to nil
1424 (while (and list
(> (decf n
) -
1))
1425 (and (eq (car (car list
)) 'toc
)
1426 (markerp (nth 4 (car list
)))
1427 (set-marker (nth 4 (car list
)) nil
))
1430 (defun reftex-access-parse-file (action)
1431 "Perform ACTION on the parse file (the .rel file).
1432 Valid actions are: readable, restore, read, kill, write."
1433 (let* ((list (symbol-value reftex-docstruct-symbol
))
1434 (docstruct-symbol reftex-docstruct-symbol
)
1435 (master (reftex-TeX-master-file))
1436 (enable-local-variables nil
)
1437 (file (if (string-match "\\.[a-zA-Z]+\\'" master
)
1438 (concat (substring master
0 (match-beginning 0))
1439 reftex-parse-file-extension
)
1440 (concat master reftex-parse-file-extension
))))
1442 ((eq action
'readable
)
1443 (file-readable-p file
))
1444 ((eq action
'restore
)
1445 (put reftex-docstruct-symbol
'modified nil
)
1446 (if (eq reftex-docstruct-symbol nil
)
1447 ;; Symbols are not yet tied: Tie them.
1448 (reftex-tie-multifile-symbols))
1449 (if (file-exists-p file
)
1450 ;; load the file and return t for success
1452 (progn (load-file file
) t
)
1453 (error (set reftex-docstruct-symbol nil
)
1454 (error "Error while loading file %s" file
)))
1455 ;; Throw an exception if the file does not exist
1456 (error "No restore file %s" file
)))
1458 (put reftex-docstruct-symbol
'modified nil
)
1459 (if (file-exists-p file
)
1460 ;; load the file and return t for success
1464 (reftex-check-parse-consistency)
1466 (error (message "Error while restoring file %s" file
)
1467 (set reftex-docstruct-symbol nil
)
1469 ;; return nil for failure, but no exception
1473 (when (and (file-exists-p file
) (file-writable-p file
))
1474 (message "Unlinking file %s" file
)
1475 (delete-file file
)))
1477 (put docstruct-symbol
'modified nil
)
1479 (if (file-writable-p file
)
1480 (with-temp-file file
1481 (message "Writing parse file %s" (abbreviate-file-name file
))
1482 (insert (format ";; RefTeX parse info file\n"))
1483 (insert (format ";; File: %s\n" master
))
1484 (insert (format ";; User: %s (%s)\n\n"
1485 (user-login-name) (user-full-name)))
1486 (insert "(set reftex-docstruct-symbol '(\n\n")
1487 (let ((standard-output (current-buffer)))
1490 (cond ((eq (car x
) 'toc
)
1491 ;; A toc entry. Do not save the marker.
1492 ;; Save the markers position at position 8
1493 (print (list 'toc
"toc" (nth 2 x
) (nth 3 x
)
1494 nil
(nth 5 x
) (nth 6 x
) (nth 7 x
)
1495 (or (and (markerp (nth 4 x
))
1496 (marker-position (nth 4 x
)))
1498 ((and (not (eq t reftex-support-index
))
1499 (eq (car x
) 'index
))
1500 ;; Don't save index entries
1505 (error "Cannot write to file %s" file
)))
1508 (defun reftex-check-parse-consistency ()
1509 ;; Check if parse file is consistent, throw an error if not.
1511 ;; Check if the master is the same: when moving a document, this will see it.
1512 (let* ((real-master (reftex-TeX-master-file))
1514 (nth 1 (assq 'bof
(symbol-value reftex-docstruct-symbol
)))))
1515 (unless (string= (file-truename real-master
) (file-truename parsed-master
))
1516 (message "Master file name in load file is different: %s versus %s"
1517 parsed-master real-master
)
1518 (error "Master file name error")))
1520 ;; Check for the existence of all document files
1521 ;;; (let* ((all (symbol-value reftex-docstruct-symbol)))
1523 ;;; (when (and (eq (car (car all)) 'bof)
1524 ;;; (not (file-regular-p (nth 1 (car all)))))
1525 ;;; (message "File %s in saved parse info not available" (cdr (car all)))
1526 ;;; (error "File not found"))
1527 ;;; (setq all (cdr all))))
1530 (defun reftex-select-external-document (xr-alist xr-index
)
1531 ;; Return index of an external document.
1532 (let* ((len (length xr-alist
)) (highest (1- (+ ?
0 len
)))
1533 (prompt (format "[%c-%c] Select TAB: Read prefix with completion"
1538 (message "No external documents available")
1539 (ding) (sit-for 1) 0)
1544 (let* ((length (apply 'max
(mapcar
1545 (lambda(x) (length (car x
))) xr-alist
)))
1546 (fmt (format " [%%c] %%-%ds %%s\n" length
))
1549 (reftex-select-with-char
1552 "SELECT EXTERNAL DOCUMENT\n------------------------\n"
1555 (format fmt
(incf n
) (or (car x
) "")
1556 (abbreviate-file-name (cdr x
))))
1560 ((and (>= key ?
0) (<= key highest
)) (- key ?
0))
1562 (setq prefix
(completing-read "Prefix: " xr-alist nil t
))
1563 (- len
(length (memq (assoc prefix xr-alist
) xr-alist
))))
1564 (t (error "Invalid document selection [%c]" key
)))))))))
1566 ;;; =========================================================================
1570 (defun reftex-locate-file (file type master-dir
&optional die
)
1571 "Find FILE of type TYPE in MASTER-DIR or on the path associated with TYPE.
1572 If the file does not have any of the valid extensions for TYPE,
1573 try first the default extension and only then the naked file name.
1574 When DIE is non-nil, throw an error if file not found."
1575 (let* ((rec-values (if reftex-search-unrecursed-path-first
'(nil t
) '(t)))
1576 (extensions (cdr (assoc type reftex-file-extensions
)))
1577 (def-ext (car extensions
))
1578 (ext-re (concat "\\("
1579 (mapconcat 'regexp-quote extensions
"\\|")
1581 (files (if (string-match ext-re file
)
1583 (if reftex-try-all-extensions
1584 (append (mapcar (lambda (x) (concat file x
))
1587 (list (concat file def-ext
) file
))))
1588 path old-path file1 f fs
)
1590 ((file-name-absolute-p file
)
1591 (while (setq f
(pop files
))
1592 (if (file-regular-p f
)
1593 (setq file1 f files nil
))))
1594 ((and reftex-use-external-file-finders
1595 (assoc type reftex-external-file-finders
))
1596 (setq file1
(reftex-find-file-externally file type master-dir
)))
1598 (while (and (null file1
) rec-values
)
1599 (setq path
(reftex-access-search-path
1600 type
(pop rec-values
) master-dir file
))
1602 (while (and (null file1
) (setq f
(pop fs
)))
1603 (when (or (null old-path
)
1604 (not (eq old-path path
)))
1606 path
(cons master-dir path
))
1607 (setq file1
(reftex-find-file-on-path f path master-dir
)))))))
1609 (die (error "No such file: %s" file
) nil
)
1610 (t (message "No such file: %s (ignored)" file
) nil
))))
1612 (defun reftex-find-file-externally (file type
&optional master-dir
)
1613 ;; Use external program to find FILE.
1614 ;; The program is taken from `reftex-external-file-finders'.
1615 ;; Interpret relative path definitions starting from MASTER-DIR.
1616 (let ((default-directory (or master-dir default-directory
))
1617 (prg (cdr (assoc type reftex-external-file-finders
)))
1619 (if (string-match "%f" prg
)
1620 (setq prg
(replace-match file t t prg
)))
1621 (setq out
(apply 'reftex-process-string
(split-string prg
)))
1622 (if (string-match "[ \t\n]+\\'" out
) ; chomp
1623 (setq out
(replace-match "" nil nil out
)))
1624 (cond ((equal out
"") nil
)
1625 ((file-regular-p out
) (expand-file-name out master-dir
))
1628 (defun reftex-process-string (program &rest args
)
1629 "Execute PROGRAM with arguments ARGS and return its STDOUT as a string."
1630 (let ((calling-dir default-directory
)) ; remember default directory
1631 (with-output-to-string
1632 (with-current-buffer standard-output
1633 (let ((default-directory calling-dir
)) ; set default directory
1634 (apply 'call-process program nil
'(t nil
) nil args
))))))
1636 (defun reftex-access-search-path (type &optional recurse master-dir file
)
1637 ;; Access path from environment variables. TYPE is either "tex" or "bib".
1638 ;; When RECURSE is t, expand path elements ending in `//' recursively.
1639 ;; Relative path elements are left as they are. However, relative recursive
1640 ;; elements are expanded with MASTER-DIR as default directory.
1641 ;; The expanded path is cached for the next search.
1642 ;; FILE is just for the progress message.
1643 ;; Returns the derived path.
1644 (let* ((pathvar (intern (concat "reftex-" type
"-path"))))
1645 (when (null (get pathvar
'status
))
1649 (reftex-parse-colon-path
1652 (if (string-match "^!" x
)
1653 (apply 'reftex-process-string
1654 (split-string (substring x
1)))
1656 ;; For consistency, the next line should look like this:
1657 ;; (cdr (assoc type reftex-path-environment))
1658 ;; However, historically we have separate options for the
1659 ;; environment variables, so we have to do this:
1660 (symbol-value (intern (concat "reftex-" type
1661 "path-environment-variables")))
1663 (put pathvar
'status
'split
)
1664 ;; Check if we have recursive elements
1665 (let ((path (symbol-value pathvar
)) dir rec
)
1666 (while (setq dir
(pop path
))
1667 (when (string= (substring dir -
2) "//")
1668 (if (file-name-absolute-p dir
)
1669 (setq rec
(or rec
'absolute
))
1670 (setq rec
'relative
))))
1671 (put pathvar
'rec-type rec
)))
1674 ;; Return the recursive expansion of the path
1676 ((not (get pathvar
'rec-type
))
1677 ;; Path does not contain recursive elements - use simple path
1678 (symbol-value pathvar
))
1679 ((or (not (get pathvar
'recursive-path
))
1680 (and (eq (get pathvar
'rec-type
) 'relative
)
1681 (not (equal master-dir
(get pathvar
'master-dir
)))))
1682 ;; Either: We don't have a recursive expansion yet.
1683 ;; or: Relative recursive path elements need to be expanded
1684 ;; relative to new default directory
1685 (message "Expanding search path to find %s file: %s ..." type file
)
1686 (put pathvar
'recursive-path
1687 (reftex-expand-path (symbol-value pathvar
) master-dir
))
1688 (put pathvar
'master-dir master-dir
)
1689 (get pathvar
'recursive-path
))
1691 ;; Recursive path computed earlier is still OK.
1692 (get pathvar
'recursive-path
)))
1693 ;; The simple path was requested
1694 (symbol-value pathvar
))))
1696 (defun reftex-find-file-on-path (file path
&optional def-dir
)
1697 ;; Find FILE along the directory list PATH.
1698 ;; DEF-DIR is the default directory for expanding relative path elements.
1700 (when (file-name-absolute-p file
)
1701 (if (file-regular-p file
)
1704 (let* ((thepath path
) file1 dir
)
1705 (while (setq dir
(pop thepath
))
1706 (when (string= (substring dir -
2) "//")
1707 (setq dir
(substring dir
0 -
1)))
1708 (setq file1
(expand-file-name file
(expand-file-name dir def-dir
)))
1709 (if (file-regular-p file1
)
1710 (throw 'exit file1
)))
1714 (defun reftex-parse-colon-path (path)
1715 ;; Like parse-colon-parse, but // or /~ are left alone.
1716 ;; Trailing ! or !! will be converted into `//' (emTeX convention)
1719 (if (string-match "\\(//+\\|/*!+\\)\\'" dir
)
1720 (setq dir
(replace-match "//" t t dir
)))
1721 (file-name-as-directory dir
))
1722 (delete "" (split-string path
(concat path-separator
"+")))))
1724 (defun reftex-expand-path (path &optional default-dir
)
1725 ;; Expand parts of path ending in `//' recursively into directory list.
1726 ;; Relative recursive path elements are expanded relative to DEFAULT-DIR.
1727 (let (path1 dir recursive
)
1728 (while (setq dir
(pop path
))
1729 (if (setq recursive
(string= (substring dir -
2) "//"))
1730 (setq dir
(substring dir
0 -
1)))
1732 (not (file-name-absolute-p dir
)))
1733 (setq dir
(expand-file-name dir default-dir
)))
1735 ;; Expand recursively
1736 (setq path1
(append (reftex-recursive-directory-list dir
) path1
))
1741 (defun reftex-recursive-directory-list (dir)
1742 ;; Return a list of all directories below DIR, including DIR itself
1743 (let ((path (list dir
)) path1 file files
)
1744 (while (setq dir
(pop path
))
1745 (when (file-directory-p dir
)
1746 (setq files
(nreverse (directory-files dir t
"[^.]")))
1747 (while (setq file
(pop files
))
1748 (if (file-directory-p file
)
1749 (push (file-name-as-directory file
) path
)))
1753 ;;; =========================================================================
1755 ;;; Some generally useful functions
1757 (defun reftex-typekey-check (typekey conf-variable
&optional n
)
1758 ;; Check if CONF-VARIABLE is true or contains TYPEKEY
1759 (and n
(setq conf-variable
(nth n conf-variable
)))
1760 (or (eq conf-variable t
)
1761 (and (stringp conf-variable
)
1762 (string-match (concat "[" conf-variable
"]") typekey
))))
1764 (defun reftex-check-recursive-edit ()
1765 ;; Check if we are already in a recursive edit. Abort with helpful
1767 (if (marker-position reftex-recursive-edit-marker
)
1769 (substitute-command-keys
1770 "In unfinished selection process. Finish, or abort with \\[abort-recursive-edit]"))))
1772 (defun reftex-in-comment ()
1774 (skip-chars-backward "^%\n\r")
1775 (eq (preceding-char) ?%
)))
1777 (defun reftex-no-props (string)
1778 ;; Return STRING with all text properties removed
1779 (and (stringp string
)
1780 (set-text-properties 0 (length string
) nil string
))
1783 (defun reftex-match-string (n)
1784 ;; Match string without properties
1785 (when (match-beginning n
)
1786 (buffer-substring-no-properties (match-beginning n
) (match-end n
))))
1788 (defun reftex-region-active-p ()
1789 "Should we operate on an active region?"
1790 (if (fboundp 'use-region-p
)
1795 (defun reftex-kill-buffer (buffer)
1796 ;; Kill buffer if it exists.
1797 (and (setq buffer
(get-buffer buffer
))
1798 (kill-buffer buffer
)))
1800 (defun reftex-erase-buffer (&optional buffer
)
1801 ;; Erase BUFFER if it exists. BUFFER defaults to current buffer.
1802 ;; This even erases read-only buffers.
1805 ;; erase current buffer
1806 (let ((buffer-read-only nil
)) (erase-buffer)))
1807 ((setq buffer
(get-buffer buffer
))
1809 (with-current-buffer buffer
1810 (let ((inhibit-read-only t
)) (erase-buffer))))))
1812 (defun reftex-this-word (&optional class
)
1813 ;; Grab the word around point.
1814 (setq class
(or class
"-a-zA-Z0-9:_/.*;|"))
1816 (buffer-substring-no-properties
1817 (progn (skip-chars-backward class
) (point))
1818 (progn (skip-chars-forward class
) (point)))))
1820 (defun reftex-number (n unit
&optional ending
)
1821 (if (and (integerp n
) (stringp unit
))
1822 (format "%d %s%s" n unit
(if (= n
1) "" (or ending
"s")))
1825 (defun reftex-all-assq (key list
)
1826 ;; Return a list of all associations of KEY in LIST. Comparison with eq.
1828 (while (setq list
(memq (assq key list
) list
))
1829 (push (car list
) rtn
)
1833 (defun reftex-all-assoc-string (key list
)
1834 ;; Return a list of all associations of KEY in LIST. Comparison with string=.
1837 (if (string= (car (car list
)) key
)
1838 (push (car list
) rtn
))
1842 (defun reftex-last-assoc-before-elt (key elt list
&optional exclusive
)
1843 ;; Find the last association of KEY in LIST before or at ELT
1844 ;; ELT is found in LIST with equal, not eq.
1845 ;; Returns nil when either KEY or elt are not found in LIST.
1846 ;; When EXCLUSIVE is non-nil, ELT cannot be the return value.
1847 ;; On success, returns the association.
1848 (let* ((elt (car (member elt list
))) (ex (not exclusive
)) ass last-ass
)
1849 (while (and (setq ass
(assoc key list
))
1850 (setq list
(memq ass list
))
1851 (or ex
(not (eq elt
(car list
))))
1857 (defun reftex-sublist-nth (list nth predicate
&optional completion
)
1858 ;; Make a list of the NTH elements of all members of LIST which
1859 ;; fulfill PREDICATE.
1860 ;; When COMPLETION is non-nil, make all elements of the resulting
1861 ;; list also a list, so that the result can be used for completion.
1864 (if (funcall predicate
(car list
))
1865 (push (if completion
1866 (list (nth nth
(car list
)))
1867 (nth nth
(car list
)))
1869 (setq list
(cdr list
)))
1872 (defun reftex-make-selection-buffer-name (type &optional index
)
1873 ;; Make unique name for a selection buffer.
1874 (format " *RefTeX[%s][%d]*"
1875 type
(or index
(get reftex-docstruct-symbol
:master-index
) 0)))
1877 (defun reftex-make-index-buffer-name (tag &optional cnt
)
1878 ;; Make unique name for an index buffer.
1879 (format "*Index[%s][%d]*"
1880 tag
(or cnt
(get reftex-docstruct-symbol
:master-index
) 0)))
1882 (defun reftex-truncate (string ncols
&optional ellipses padding
)
1883 ;; Truncate STRING to NCOLS characters.
1884 ;; When PADDING is non-nil, and string is shorter than NCOLS, fill with
1885 ;; white space to NCOLS characters. When ELLIPSES is non-nil and the
1886 ;; string needs to be truncated, replace last 3 characters by dots.
1888 (if (<= (length string
) ncols
)
1891 (concat (substring string
0 (- ncols
3)) "...")
1892 (substring string
0 ncols
))))
1894 (format (format "%%-%ds" ncols
) string
)
1897 (defun reftex-nearest-match (regexp &optional max-length
)
1898 ;; Find the nearest match of REGEXP. Set the match data.
1899 ;; If POS is given, calculate distances relative to it.
1900 ;; Return nil if there is no match.
1902 (dist (or max-length
(length regexp
)))
1903 match1 match2 match
)
1904 (goto-char (min (+ pos dist
) (point-max)))
1905 (when (re-search-backward regexp nil t
)
1906 (setq match1
(match-data)))
1907 (goto-char (max (- pos dist
) (point-min)))
1908 (when (re-search-forward regexp nil t
)
1909 (setq match2
(match-data)))
1913 ((not match1
) match2
)
1914 ((not match2
) match1
)
1915 ((< (abs (- pos
(car match1
))) (abs (- pos
(car match2
)))) match1
)
1917 (if match
(progn (set-match-data match
) t
) nil
)))
1919 (defun reftex-auto-mode-alist ()
1920 ;; Return an `auto-mode-alist' with only the .gz (etc) thingies.
1921 ;; Stolen from gnus nnheader.
1922 (let ((alist auto-mode-alist
)
1925 (when (listp (cdr (car alist
)))
1926 (push (car alist
) out
))
1930 (defun reftex-window-height ()
1931 (if (fboundp 'window-displayed-height
)
1932 (window-displayed-height)
1935 (defun reftex-enlarge-to-fit (buf2 &optional keep-current
)
1936 ;; Enlarge other window displaying buffer to show whole buffer if possible.
1937 ;; If KEEP-CURRENT in non-nil, current buffer must remain visible.
1938 (let* ((win1 (selected-window))
1939 (buf1 (current-buffer))
1940 (win2 (get-buffer-window buf2
))) ;; Only on current frame.
1942 (select-window win2
)
1943 (unless (and (pos-visible-in-window-p (point-min))
1944 (pos-visible-in-window-p (point-max)))
1945 (enlarge-window (1+ (- (count-lines (point-min) (point-max))
1946 (reftex-window-height))))))
1948 ((window-live-p win1
) (select-window win1
))
1950 ;; we must have the old buffer!
1951 (switch-to-buffer-other-window buf1
)
1952 (shrink-window (- (window-height) window-min-height
))))))
1954 (defun reftex-select-with-char (prompt help-string
&optional delay-time scroll
)
1955 ;; Offer to select something with PROMPT and, after DELAY-TIME seconds,
1956 ;; also with HELP-STRING.
1957 ;; When SCROLL is non-nil, use SPC and DEL to scroll help window.
1959 (save-window-excursion
1961 (message "%s (?=Help)" prompt
)
1962 (when (or (sit-for (or delay-time
0))
1963 (= ?
\? (setq char
(read-char-exclusive))))
1964 (reftex-kill-buffer "*RefTeX Select*")
1965 (switch-to-buffer-other-window "*RefTeX Select*")
1966 (insert help-string
)
1968 (unless (and (pos-visible-in-window-p (point-min))
1969 (pos-visible-in-window-p (point-max)))
1970 (enlarge-window (1+ (- (count-lines (point-min) (point-max))
1971 (reftex-window-height)))))
1972 (setq truncate-lines t
))
1973 (if (and (pos-visible-in-window-p (point-min))
1974 (pos-visible-in-window-p (point-max)))
1976 (setq prompt
(concat prompt
(if scroll
" (SPC/DEL=Scroll)" ""))))
1977 (message "%s" prompt
)
1978 (and (equal char ?
\?) (setq char
(read-char-exclusive)))
1980 (cond ((equal char ?\C-g
) (keyboard-quit))
1982 ((and scroll
(equal char ?\
))
1983 (condition-case nil
(scroll-up) (error nil
))
1984 (message "%s" prompt
))
1985 ((and scroll
(equal char ?\C-?
))
1986 (condition-case nil
(scroll-down) (error nil
))
1987 (message "%s" prompt
))
1989 (throw 'exit char
)))
1990 (setq char
(read-char-exclusive)))))))
1993 (defun reftex-make-regexp-allow-for-ctrl-m (string)
1994 ;; convert STRING into a regexp, allowing ^M for \n and vice versa
1996 (setq string
(regexp-quote string
))
1997 (while (setq start
(string-match "[\n\r]" string
(+ 3 start
)))
1998 (setq string
(replace-match "[\n\r]" nil t string
)))
2001 (defun reftex-get-buffer-visiting (file)
2002 ;; return a buffer visiting FILE
2004 ((boundp 'find-file-compare-truenames
) ; XEmacs
2005 (let ((find-file-compare-truenames t
))
2006 (get-file-buffer file
)))
2007 ((fboundp 'find-buffer-visiting
) ; Emacs
2008 (find-buffer-visiting file
))
2009 (t (error "This should not happen (reftex-get-buffer-visiting)"))))
2011 ;; Define `current-message' for compatibility with XEmacs prior to 20.4
2012 (defvar message-stack
)
2013 (if (and (featurep 'xemacs
)
2014 (not (fboundp 'current-message
)))
2015 (defun current-message (&optional frame
)
2016 (cdr (car message-stack
))))
2018 (defun reftex-visited-files (list)
2019 ;; Takes a list of filenames and returns the buffers of those already visited
2020 (delq nil
(mapcar (lambda (x) (if (reftex-get-buffer-visiting x
) x nil
))
2023 (defun reftex-get-file-buffer-force (file &optional mark-to-kill
)
2024 ;; Return a buffer visiting file. Make one, if necessary.
2025 ;; If neither such a buffer nor the file exist, return nil.
2026 ;; If MARK-TO-KILL is t and there is no live buffer, visit the file with
2027 ;; initializations according to `reftex-initialize-temporary-buffers',
2028 ;; and mark the buffer to be killed after use.
2030 (let ((buf (reftex-get-buffer-visiting file
)))
2033 ;; We have it already as a buffer - just return it
2036 ((file-readable-p file
)
2037 ;; At least there is such a file and we can read it.
2039 (if (or (not mark-to-kill
)
2040 (eq t reftex-initialize-temporary-buffers
))
2042 ;; Visit the file with full magic
2043 (setq buf
(find-file-noselect file
))
2045 ;; Else: Visit the file just briefly, without or
2046 ;; with limited Magic
2048 ;; The magic goes away
2049 (letf ((format-alist nil
)
2050 (auto-mode-alist (reftex-auto-mode-alist))
2051 ((default-value 'major-mode
) 'fundamental-mode
)
2052 (enable-local-variables nil
)
2053 (after-insert-file-functions nil
))
2054 (setq buf
(find-file-noselect file
)))
2056 ;; Is there a hook to run?
2057 (when (listp reftex-initialize-temporary-buffers
)
2058 (with-current-buffer buf
2059 (run-hooks 'reftex-initialize-temporary-buffers
))))
2061 ;; Let's see if we got a license to kill :-|
2063 (add-to-list 'reftex-buffers-to-kill buf
))
2065 ;; Return the new buffer
2068 ;; If no such file exists, return nil
2071 (defun reftex-kill-temporary-buffers (&optional buffer
)
2072 ;; Kill all buffers in the list reftex-kill-temporary-buffers.
2075 (when (member buffer reftex-buffers-to-kill
)
2076 (kill-buffer buffer
)
2077 (setq reftex-buffers-to-kill
2078 (delete buffer reftex-buffers-to-kill
))))
2080 (while (setq buffer
(pop reftex-buffers-to-kill
))
2081 (when (bufferp buffer
)
2082 (and (buffer-modified-p buffer
)
2083 (y-or-n-p (format "Save file %s? "
2084 (buffer-file-name buffer
)))
2085 (with-current-buffer buffer
2087 (kill-buffer buffer
))
2088 (pop reftex-buffers-to-kill
)))))
2090 (defun reftex-splice-symbols-into-list (list alist
)
2091 ;; Splice the association in ALIST of any symbols in LIST into the list.
2095 (while (and (not (null (car list
))) ;; keep list elements nil
2096 (symbolp (car list
)))
2097 (setq tmp
(car list
))
2100 (setq list
(append (nth 2 (assoc tmp alist
)) (cdr list
))))
2102 (error "Cannot treat symbol %s in reftex-label-alist"
2103 (symbol-name tmp
)))))
2104 (push (pop list
) rtn
))
2107 (defun reftex-remove-symbols-from-list (list)
2108 ;; Remove all symbols from list
2111 (unless (symbolp (car list
))
2112 (push (car list
) rtn
))
2113 (setq list
(cdr list
)))
2116 (defun reftex-uniquify (list)
2117 ;; Return a list of all elements in LIST, but each only once, keeping order
2120 (setq elm
(pop list
))
2121 (unless (member elm new
)
2125 (defun reftex-uniquify-by-car (alist &optional keep-list
)
2126 ;; Return a list of all elements in ALIST, but each car only once.
2127 ;; Elements of KEEP-LIST are not removed even if duplicate.
2130 (setq elm
(pop alist
))
2131 (if (or (member (car elm
) keep-list
)
2132 (not (assoc (car elm
) new
)))
2136 (defun reftex-abbreviate-title (string)
2137 (reftex-convert-string string
"[-~ \t\n\r,;]" nil t t
2138 5 40 nil
1 " " (nth 5 reftex-derive-label-parameters
)))
2140 (defun reftex-convert-string (string split-re invalid-re dot keep-fp
2141 nwords maxchar invalid abbrev sep
2142 ignore-words
&optional downcase
)
2143 "Convert a string (a sentence) to something shorter.
2144 SPLIT-RE is the regular expression used to split the string into words.
2145 INVALID-RE matches characters which are invalid in the final string.
2146 DOT t means add dots to abbreviated words.
2147 KEEP-FP t means to keep a final punctuation when applicable.
2148 NWORDS Number of words to use.
2149 MAXCHAR Maximum number of characters in the final string.
2150 INVALID nil: Throw away any words containing stuff matched with INVALID-RE.
2151 t: Throw away only the matched part, not the whole word.
2152 ABBREV nil: Never abbreviate words.
2153 t: Always abbreviate words (see `reftex-abbrev-parameters').
2154 not t and not nil: Abbreviate words if necessary to shorten
2155 string below MAXCHAR.
2156 SEP String separating different words in the output string.
2157 IGNORE-WORDS List of words which should be removed from the string."
2159 (let* ((words0 (split-string string
(or split-re
"[ \t\n\r]")))
2160 (reftex-label-illegal-re (or invalid-re
"\000"))
2163 (make-string (nth 0 reftex-abbrev-parameters
) ?.
)
2164 "[" (nth 2 reftex-abbrev-parameters
) "]*"
2166 "[" (nth 3 reftex-abbrev-parameters
) "]"
2167 (make-string (1- (nth 1 reftex-abbrev-parameters
)) ?.
)))
2170 ;; Remove words from the ignore list or with funny characters
2171 (while (setq word
(pop words0
))
2172 (if downcase
(setq word
(downcase word
)))
2174 ((member (downcase word
) ignore-words
))
2175 ((string-match reftex-label-illegal-re word
)
2177 (while (string-match reftex-label-illegal-re word
)
2178 (setq word
(replace-match "" nil nil word
)))
2181 (push word words
))))
2182 (setq words
(nreverse words
))
2184 ;; Restrict number of words
2185 (if (> (length words
) nwords
)
2186 (setcdr (nthcdr (1- nwords
) words
) nil
))
2188 ;; First, try to use all words
2189 (setq string
(mapconcat 'identity words sep
))
2191 ;; Abbreviate words if enforced by user settings or string length
2192 (if (or (eq t abbrev
)
2194 (> (length string
) maxchar
)))
2197 (lambda (w) (if (string-match abbrev-re w
)
2199 (concat (match-string 1 w
) ".")
2203 string
(mapconcat 'identity words sep
)))
2205 ;; Shorten if still to long
2207 (if (> (length string
) maxchar
)
2208 (substring string
0 maxchar
)
2211 ;; Delete the final punctuation, if any
2212 (if (and (not keep-fp
) (string-match "\\s.+\\'" string
))
2213 (setq string
(replace-match "" nil nil string
)))
2216 (defun reftex-nicify-text (text)
2217 ;; Make TEXT nice for inclusion as context into label menu.
2218 ;; 1. remove line breaks and extra white space
2219 (while (string-match "[\n\r\t]\\|[ \t][ \t]+" text
)
2220 (setq text
(replace-match " " nil t text
)))
2221 ;; 2. cut before the next `\end{' or `\item' or `\\'
2222 (if (string-match "\\(\\\\end{\\|\\\\item\\|\\\\\\\\\\).*" text
)
2223 (setq text
(replace-match "" nil t text
)))
2224 ;; 3. kill the embedded label
2225 (if (string-match "\\\\label{[^}]*}" text
)
2226 (setq text
(replace-match "" nil t text
)))
2227 ;; 4. remove leading garbage
2228 (if (string-match "\\`[ }]+" text
)
2229 (setq text
(replace-match "" nil t text
)))
2232 ((> (length text
) 100) (substring text
0 100))
2233 ((= (length text
) 0) (make-string 1 ?\
))
2236 ;;; =========================================================================
2238 ;;; Fontification and Highlighting
2240 (defun reftex-use-fonts ()
2241 ;; Return t if we can and want to use fonts.
2242 (and ; window-system
2244 (featurep 'font-lock
)))
2246 (defun reftex-refontify ()
2247 ;; Return t if we need to refontify context
2248 (and (reftex-use-fonts)
2249 (or (eq t reftex-refontify-context
)
2250 (and (eq 1 reftex-refontify-context
)
2251 ;; Test of we use the font-lock version of x-symbol
2252 (and (featurep 'x-symbol-tex
) (not (boundp 'x-symbol-mode
)))))))
2254 (defvar font-lock-defaults-computed
)
2255 (defun reftex-fontify-select-label-buffer (parent-buffer)
2256 ;; Fontify the `*RefTeX Select*' buffer. Buffer is temporarily renamed to
2257 ;; start with none-SPC char, because Font-Lock otherwise refuses operation.
2258 (run-hook-with-args 'reftex-pre-refontification-functions
2259 parent-buffer
'reftex-ref
)
2260 (let* ((oldname (buffer-name))
2261 (newname (concat "Fontify-me-" oldname
)))
2264 ;; Rename buffer temporarily to start w/o space (because of font-lock)
2265 (rename-buffer newname t
)
2267 ((fboundp 'font-lock-default-fontify-region
)
2268 ;; Good: we have the indirection functions
2269 (set (make-local-variable 'font-lock-fontify-region-function
)
2270 'reftex-select-font-lock-fontify-region
)
2271 (let ((major-mode 'latex-mode
))
2272 (font-lock-mode 1)))
2273 ((fboundp 'font-lock-set-defaults-1
)
2274 ;; Looks like the XEmacs font-lock stuff.
2275 ;; FIXME: this is still kind of a hack, but it works.
2276 (set (make-local-variable 'font-lock-keywords
) nil
)
2277 (let ((major-mode 'latex-mode
)
2278 (font-lock-defaults-computed nil
))
2279 (font-lock-set-defaults-1)
2280 (reftex-select-font-lock-fontify-region (point-min) (point-max))))
2283 (message "Sorry: cannot refontify RefTeX Select buffer."))))
2284 (rename-buffer oldname
))))
2286 (defun reftex-select-font-lock-fontify-region (beg end
&optional loudly
)
2287 ;; Fontify a region, but only lines starting with a dot.
2288 (let ((func (if (fboundp 'font-lock-default-fontify-region
)
2289 'font-lock-default-fontify-region
2290 'font-lock-fontify-region
))
2293 (while (re-search-forward "^\\." end t
)
2294 (setq beg1
(point) end1
(progn (skip-chars-forward "^\n") (point)))
2295 (funcall func beg1 end1 nil
)
2298 (defun reftex-select-font-lock-unfontify (&rest ignore
) t
)
2300 (defun reftex-verified-face (&rest faces
)
2301 ;; Return the first valid face in FACES, or nil if none is valid.
2302 ;; Also, when finding a nil element in FACES, return nil. This
2303 ;; function is just a safety net to catch name changes of builtin
2304 ;; fonts. Currently it is only used for reftex-label-face, which has
2305 ;; as default font-lock-reference-face, which was recently renamed
2306 ;; to font-lock-constant-face.
2309 (while (setq face
(pop faces
))
2310 (if (featurep 'xemacs
)
2311 (if (find-face face
) (throw 'exit face
))
2312 (if (facep face
) (throw 'exit face
)))))))
2314 ;; Highlighting uses overlays. For XEmacs, we use extends.
2315 (defalias 'reftex-make-overlay
2316 (if (featurep 'xemacs
) 'make-extent
'make-overlay
))
2317 (defalias 'reftex-overlay-put
2318 (if (featurep 'xemacs
) 'set-extent-property
'overlay-put
))
2319 (defalias 'reftex-move-overlay
2320 (if (featurep 'xemacs
) 'set-extent-endpoints
'move-overlay
))
2321 (defalias 'reftex-delete-overlay
2322 (if (featurep 'xemacs
) 'detach-extent
'delete-overlay
))
2324 ;; We keep a vector with several different overlays to do our highlighting.
2325 (defvar reftex-highlight-overlays
[nil nil nil
])
2327 ;; Initialize the overlays
2328 (aset reftex-highlight-overlays
0 (reftex-make-overlay 1 1))
2329 (reftex-overlay-put (aref reftex-highlight-overlays
0)
2331 (aset reftex-highlight-overlays
1 (reftex-make-overlay 1 1))
2332 (reftex-overlay-put (aref reftex-highlight-overlays
1)
2333 'face reftex-cursor-selected-face
)
2334 (aset reftex-highlight-overlays
2 (reftex-make-overlay 1 1))
2335 (reftex-overlay-put (aref reftex-highlight-overlays
2)
2336 'face reftex-cursor-selected-face
)
2338 ;; Two functions for activating and deactivation highlight overlays
2339 (defun reftex-highlight (index begin end
&optional buffer
)
2340 "Highlight a region with overlay INDEX."
2341 (reftex-move-overlay (aref reftex-highlight-overlays index
)
2342 begin end
(or buffer
(current-buffer))))
2343 (defun reftex-unhighlight (index)
2344 "Detach overlay INDEX."
2345 (reftex-delete-overlay (aref reftex-highlight-overlays index
)))
2347 (defun reftex-highlight-shall-die ()
2348 ;; Function used in pre-command-hook to remove highlights.
2349 (remove-hook 'pre-command-hook
'reftex-highlight-shall-die
)
2350 (reftex-unhighlight 0))
2352 ;;; =========================================================================
2356 ;; The default bindings in the mode map.
2358 '(("\C-c=" . reftex-toc
)
2359 ("\C-c-" . reftex-toc-recenter
)
2360 ("\C-c(" . reftex-label
)
2361 ("\C-c)" . reftex-reference
)
2362 ("\C-c[" . reftex-citation
)
2363 ("\C-c<" . reftex-index
)
2364 ("\C-c>" . reftex-display-index
)
2365 ("\C-c/" . reftex-index-selection-or-word
)
2366 ("\C-c\\" . reftex-index-phrase-selection-or-word
)
2367 ("\C-c|" . reftex-index-visit-phrases-buffer
)
2368 ("\C-c&" . reftex-view-crossref
))
2369 do
(define-key reftex-mode-map
(car x
) (cdr x
)))
2371 ;; Bind `reftex-mouse-view-crossref' only when the key is still free
2372 (if (featurep 'xemacs
)
2373 (unless (key-binding [(shift button2
)])
2374 (define-key reftex-mode-map
[(shift button2
)]
2375 'reftex-mouse-view-crossref
))
2376 (unless (key-binding [(shift mouse-2
)])
2377 (define-key reftex-mode-map
[(shift mouse-2
)]
2378 'reftex-mouse-view-crossref
)))
2380 ;; Bind `reftex-view-crossref-from-bibtex' in BibTeX mode map
2383 '(define-key bibtex-mode-map
"\C-c&" 'reftex-view-crossref-from-bibtex
))
2385 ;; If the user requests so, she can have a few more bindings:
2386 ;; For most of these commands there are already bindings in place.
2387 ;; Setting `reftex-extra-bindings' really is only there to spare users
2388 ;; the hassle of defining bindings in the user space themselves. This
2389 ;; is why they violate the key binding recommendations.
2390 (defvar reftex-extra-bindings-map
2391 (let ((map (make-sparse-keymap)))
2392 (define-key map
"t" 'reftex-toc
)
2393 (define-key map
"l" 'reftex-label
)
2394 (define-key map
"r" 'reftex-reference
)
2395 (define-key map
"c" 'reftex-citation
)
2396 (define-key map
"v" 'reftex-view-crossref
)
2397 (define-key map
"g" 'reftex-grep-document
)
2398 (define-key map
"s" 'reftex-search-document
)
2400 "Reftex extra bindings map")
2402 (when reftex-extra-bindings
2403 (define-key reftex-mode-map
2404 reftex-extra-bindings-prefix
2405 reftex-extra-bindings-map
))
2408 ;;; =========================================================================
2412 ;; Define a menu for the menu bar if Emacs is running under X
2414 (defvar reftex-isearch-minor-mode nil
)
2415 (make-variable-buffer-local 'reftex-isearch-minor-mode
)
2417 (easy-menu-define reftex-mode-menu reftex-mode-map
2418 "Menu used in RefTeX mode"
2420 ["Table of Contents" reftex-toc t
]
2421 ["Recenter TOC" reftex-toc-recenter t
]
2423 ["\\label" reftex-label t
]
2424 ["\\ref" reftex-reference t
]
2425 ["\\cite" reftex-citation t
]
2427 ["\\index" reftex-index t
]
2428 ["\\index{THIS}" reftex-index-selection-or-word t
]
2430 ["Add THIS to Index Phrases" reftex-index-phrase-selection-or-word t
]
2431 ["Visit Phrase Buffer" reftex-index-visit-phrases-buffer t
]
2432 ["Apply Phrases to Region" reftex-index-phrases-apply-to-region t
]
2434 ["Display the Index" reftex-display-index t
])
2436 ["View Crossref" reftex-view-crossref t
]
2439 ["One File" reftex-parse-one reftex-enable-partial-scans
]
2440 ["Entire Document" reftex-parse-all t
]
2441 ["Save to File" (reftex-access-parse-file 'write
)
2442 (> (length (symbol-value reftex-docstruct-symbol
)) 0)]
2443 ["Restore from File" (reftex-access-parse-file 'restore
) t
])
2445 ["Search Whole Document" reftex-search-document t
]
2446 ["Search Again" tags-loop-continue t
]
2447 ["Replace in Document" reftex-query-replace-document t
]
2448 ["Grep on Document" reftex-grep-document t
]
2450 ["Goto Label" reftex-goto-label t
]
2451 ["Find Duplicate Labels" reftex-find-duplicate-labels t
]
2452 ["Change Label and Refs" reftex-change-label t
]
2453 ["Renumber Simple Labels" reftex-renumber-simple-labels t
]
2455 ["Create BibTeX File" reftex-create-bibtex-file t
]
2457 ["Create TAGS File" reftex-create-tags-file t
]
2459 ["Save Document" reftex-save-all-document-buffers t
])
2464 (setq reftex-enable-partial-scans
(not reftex-enable-partial-scans
))
2465 :style toggle
:selected reftex-enable-partial-scans
]
2466 ["Auto-Save Parse Info"
2467 (setq reftex-save-parse-info
(not reftex-save-parse-info
))
2468 :style toggle
:selected reftex-save-parse-info
]
2471 ["Automatic Recenter" reftex-toggle-auto-toc-recenter
2472 :style toggle
:selected reftex-toc-auto-recenter-timer
]
2475 ["Automatic Info" reftex-toggle-auto-view-crossref
2476 :style toggle
:selected reftex-auto-view-crossref-timer
]
2477 ["...in Echo Area" (setq reftex-auto-view-crossref t
)
2478 :style radio
:selected
(eq reftex-auto-view-crossref t
)]
2479 ["...in Other Window" (setq reftex-auto-view-crossref
'window
)
2480 :style radio
:selected
(eq reftex-auto-view-crossref
'window
)]
2483 ["AUC TeX Interface" reftex-toggle-plug-into-AUCTeX
2484 :style toggle
:selected reftex-plug-into-AUCTeX
]
2485 ["isearch whole document" reftex-isearch-minor-mode
2486 :style toggle
:selected reftex-isearch-minor-mode
])
2488 ["Default" (setq reftex-vref-is-default nil
2489 reftex-fref-is-default nil
)
2490 :style radio
:selected
(not (or reftex-vref-is-default
2491 reftex-fref-is-default
))]
2492 ["Varioref" (setq reftex-vref-is-default t
2493 reftex-fref-is-default nil
)
2494 :style radio
:selected reftex-vref-is-default
]
2495 ["Fancyref" (setq reftex-fref-is-default t
2496 reftex-vref-is-default nil
)
2497 :style radio
:selected reftex-fref-is-default
])
2502 (capitalize (symbol-name (car x
)))
2503 (list 'reftex-set-cite-format
(list 'quote
(car x
)))
2504 :style
'radio
:selected
2505 (list 'eq
(list 'reftex-get-cite-format
) (list 'quote
(car x
)))))
2506 reftex-cite-format-builtin
)
2508 "Sort Database Matches"
2509 ["Not" (setq reftex-sort-bibtex-matches nil
)
2510 :style radio
:selected
(eq reftex-sort-bibtex-matches nil
)]
2511 ["by Author" (setq reftex-sort-bibtex-matches
'author
)
2512 :style radio
:selected
(eq reftex-sort-bibtex-matches
'author
)]
2513 ["by Year" (setq reftex-sort-bibtex-matches
'year
)
2514 :style radio
:selected
(eq reftex-sort-bibtex-matches
'year
)]
2515 ["by Year, reversed" (setq reftex-sort-bibtex-matches
'reverse-year
)
2516 :style radio
:selected
(eq reftex-sort-bibtex-matches
'reverse-year
)])
2521 (capitalize (symbol-name (car x
)))
2522 (list 'reftex-add-index-macros
(list 'list
(list 'quote
(car x
))))
2523 :style
'radio
:selected
2524 (list 'memq
(list 'quote
(car x
))
2525 (list 'get
'reftex-docstruct-symbol
2526 (list 'quote
'reftex-index-macros-style
)))))
2527 reftex-index-macros-builtin
))
2529 ["Reset RefTeX Mode" reftex-reset-mode t
]
2532 ["Browse RefTeX Group" reftex-customize t
]
2534 ["Build Full Customize Menu" reftex-create-customize-menu
2535 (fboundp 'customize-menu-create
)])
2537 ["Info" reftex-info t
]
2538 ["Commentary" reftex-show-commentary t
])))
2540 (defun reftex-customize ()
2541 "Call the customize function with reftex as argument."
2543 (customize-browse 'reftex
))
2545 (defun reftex-create-customize-menu ()
2546 "Create a full customization menu for RefTeX, insert it into the menu."
2548 (if (fboundp 'customize-menu-create
)
2551 '("Ref") "Customize"
2552 `(["Browse RefTeX group" reftex-customize t
]
2554 ,(customize-menu-create 'reftex
)
2555 ["Set" Custom-set t
]
2556 ["Save" Custom-save t
]
2557 ["Reset to Current" Custom-reset-current t
]
2558 ["Reset to Saved" Custom-reset-saved t
]
2559 ["Reset to Standard Settings" Custom-reset-standard t
]))
2560 (message "\"Ref\"-menu now contains full customization menu"))
2561 (error "Cannot expand menu (outdated version of cus-edit.el)")))
2563 (defun reftex-show-commentary ()
2564 "Use the finder to view the file documentation from `reftex.el'."
2566 (finder-commentary "reftex.el"))
2568 (defun reftex-info (&optional node
)
2569 "Read documentation for RefTeX in the info system.
2570 With optional NODE, go directly to that node."
2572 (info (format "(reftex)%s" (or node
""))))
2574 ;;; Install the kill-buffer and kill-emacs hooks ------------------------------
2576 (add-hook 'kill-buffer-hook
'reftex-kill-buffer-hook
)
2577 (unless noninteractive
2578 (add-hook 'kill-emacs-hook
'reftex-kill-emacs-hook
))
2580 ;;; Run Hook ------------------------------------------------------------------
2582 (run-hooks 'reftex-load-hook
)
2584 ;;; That's it! ----------------------------------------------------------------
2586 (setq reftex-tables-dirty t
) ; in case this file is evaluated by hand
2589 ;;;============================================================================
2591 ;;; reftex.el ends here