1 ;;; reftex-cite.el --- creating citations with RefTeX
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Carsten Dominik <dominik@science.uva.nl>
7 ;; Maintainer: auctex-devel@gnu.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 (eval-when-compile (require 'cl
))
30 (provide 'reftex-cite
)
34 ;; Variables and constants
36 ;; The history list of regular expressions used for citations
37 (defvar reftex-cite-regexp-hist nil
)
39 ;; Prompt and help string for citation selection
40 (defconst reftex-citation-prompt
41 "Select: [n]ext [p]revious [r]estrict [ ]full_entry [q]uit RET [?]Help+more")
43 (defconst reftex-citation-help
44 " n / p Go to next/previous entry (Cursor motion works as well).
45 g / r Start over with new regexp / Refine with additional regexp.
46 SPC Show full database entry in other window.
47 f Toggle follow mode: Other window will follow with full db entry.
48 . Show insertion point.
49 q Quit without inserting \\cite macro into buffer.
50 TAB Enter citation key with completion.
51 RET Accept current entry (also on mouse-2) and create \\cite macro.
52 m / u Mark/Unmark the entry.
53 e / E Create BibTeX file with all (marked/unmarked) entries
54 a / A Put all (marked) entries into one/many \\cite commands.")
58 (defmacro reftex-with-special-syntax-for-bib
(&rest body
)
59 `(let ((saved-syntax (syntax-table)))
62 (set-syntax-table reftex-syntax-table-for-bib
)
64 (set-syntax-table saved-syntax
))))
66 (defun reftex-default-bibliography ()
67 ;; Return the expanded value of `reftex-default-bibliography'.
68 ;; The expanded value is cached.
69 (unless (eq (get 'reftex-default-bibliography
:reftex-raw
)
70 reftex-default-bibliography
)
71 (put 'reftex-default-bibliography
:reftex-expanded
72 (reftex-locate-bibliography-files
73 default-directory reftex-default-bibliography
))
74 (put 'reftex-default-bibliography
:reftex-raw
75 reftex-default-bibliography
))
76 (get 'reftex-default-bibliography
:reftex-expanded
))
78 (defun reftex-bib-or-thebib ()
79 ;; Tests if BibTeX or \begin{tehbibliography} should be used for the
81 ;; Find the bof of the current file
82 (let* ((docstruct (symbol-value reftex-docstruct-symbol
))
83 (rest (or (member (list 'bof
(buffer-file-name)) docstruct
)
85 (bib (assq 'bib rest
))
86 (thebib (assq 'thebib rest
))
87 (bibmem (memq bib rest
))
88 (thebibmem (memq thebib rest
)))
89 (when (not (or thebib bib
))
90 (setq bib
(assq 'bib docstruct
)
91 thebib
(assq 'thebib docstruct
)
92 bibmem
(memq bib docstruct
)
93 thebibmem
(memq thebib docstruct
)))
94 (if (> (length bibmem
) (length thebibmem
))
96 (if thebib
'thebib nil
))))
98 (defun reftex-get-bibfile-list ()
99 ;; Return list of bibfiles for current document.
100 ;; When using the chapterbib or bibunits package you should either
101 ;; use the same database files everywhere, or separate parts using
102 ;; different databases into different files (included into the mater file).
103 ;; Then this function will return the applicable database files.
105 ;; Ensure access to scanning info
106 (reftex-access-scan-info)
108 ;; Try inside this file (and its includes)
109 (cdr (reftex-last-assoc-before-elt
110 'bib
(list 'eof
(buffer-file-name))
111 (member (list 'bof
(buffer-file-name))
112 (symbol-value reftex-docstruct-symbol
))))
113 ;; Try after the beginning of this file
114 (cdr (assq 'bib
(member (list 'bof
(buffer-file-name))
115 (symbol-value reftex-docstruct-symbol
))))
116 ;; Anywhere in the entire document
117 (cdr (assq 'bib
(symbol-value reftex-docstruct-symbol
)))
118 (error "\\bibliography statement missing or .bib files not found")))
120 ;; Find a certain reference in any of the BibTeX files.
122 (defun reftex-pop-to-bibtex-entry (key file-list
&optional mark-to-kill
123 highlight item return
)
124 ;; Find BibTeX KEY in any file in FILE-LIST in another window.
125 ;; If MARK-TO-KILL is non-nil, mark new buffer to kill.
126 ;; If HIGHLIGHT is non-nil, highlight the match.
127 ;; If ITEM in non-nil, search for bibitem instead of database entry.
128 ;; If RETURN is non-nil, just return the entry and restore point.
132 (concat "\\\\bibitem\\(\\[[^]]*\\]\\)?{" (regexp-quote key
) "}")
133 (concat "@[a-zA-Z]+[ \t\n\r]*[{(][ \t\n\r]*" (regexp-quote key
)
135 (buffer-conf (current-buffer))
140 (setq file
(car file-list
)
141 file-list
(cdr file-list
))
142 (unless (setq buf
(reftex-get-file-buffer-force file mark-to-kill
))
143 (error "No such file %s" file
))
145 (setq oldpos
(point))
147 (goto-char (point-min))
148 (if (not (re-search-forward re nil t
))
149 (goto-char oldpos
) ;; restore previous position of point
150 (goto-char (match-beginning 0))
153 ;; Just return the relevant entry
154 (if item
(goto-char (match-end 0)))
155 (setq return
(buffer-substring
156 (point) (reftex-end-of-bib-entry item
)))
157 (goto-char oldpos
) ;; restore point.
158 (set-buffer buffer-conf
)
159 (throw 'exit return
))
160 (switch-to-buffer-other-window buf
)
164 (reftex-highlight 0 (match-beginning 0) (match-end 0)))
165 (throw 'exit
(selected-window))))
166 (set-buffer buffer-conf
)
168 (error "No \\bibitem with citation key %s" key
)
169 (error "No BibTeX entry with citation key %s" key
)))))
171 (defun reftex-end-of-bib-entry (item)
177 "\\\\bibitem\\|\\end{thebibliography}")
178 (1- (match-beginning 0)))
179 (progn (forward-list 1) (point)))
180 (error (min (point-max) (+ 300 (point)))))))
182 ;; Parse bibtex buffers
184 (defun reftex-extract-bib-entries (buffers)
185 ;; Extract bib entries which match regexps from BUFFERS.
186 ;; BUFFERS is a list of buffers or file names.
187 ;; Return list with entries."
188 (let* (re-list first-re rest-re
189 (buffer-list (if (listp buffers
) buffers
(list buffers
)))
190 found-list entry buffer1 buffer alist
191 key-point start-point end-point default
)
193 ;; Read a regexp, completing on known citation keys.
194 (setq default
(regexp-quote (reftex-get-bibkey-default)))
199 "Regex { && Regex...}: "
202 (if (fboundp 'LaTeX-bibitem-list
)
204 (cdr (assoc 'bibview-cache
205 (symbol-value reftex-docstruct-symbol
))))
207 nil nil nil
'reftex-cite-regexp-hist
)
210 (if (or (null re-list
) (equal re-list
'("")))
211 (setq re-list
(list default
)))
213 (setq first-re
(car re-list
) ; We'll use the first re to find things,
214 rest-re
(cdr re-list
)) ; the others to narrow down.
215 (if (string-match "\\`[ \t]*\\'" (or first-re
""))
216 (error "Empty regular expression"))
219 (save-window-excursion
221 ;; Walk through all bibtex files
223 (setq buffer
(car buffer-list
)
224 buffer-list
(cdr buffer-list
))
225 (if (and (bufferp buffer
)
226 (buffer-live-p buffer
))
227 (setq buffer1 buffer
)
228 (setq buffer1
(reftex-get-file-buffer-force
229 buffer
(not reftex-keep-temporary-buffers
))))
231 (message "No such BibTeX file %s (ignored)" buffer
)
232 (message "Scanning bibliography database %s" buffer1
))
235 (reftex-with-special-syntax-for-bib
237 (goto-char (point-min))
238 (while (re-search-forward first-re nil t
)
240 (setq key-point
(point))
241 (unless (re-search-backward
242 "\\(\\`\\|[\n\r]\\)[ \t]*@\\([a-zA-Z]+\\)[ \t\n\r]*[{(]" nil t
)
243 (throw 'search-again nil
))
244 (setq start-point
(point))
245 (goto-char (match-end 0))
248 (error (goto-char key-point
)
249 (throw 'search-again nil
)))
250 (setq end-point
(point))
252 ;; Ignore @string, @comment and @c entries or things
254 (when (or (string= (downcase (match-string 2)) "string")
255 (string= (downcase (match-string 2)) "comment")
256 (string= (downcase (match-string 2)) "c")
257 (< (point) key-point
)) ; this means match not in {}
258 (goto-char key-point
)
259 (throw 'search-again nil
))
261 ;; Well, we have got a match
262 ;;(setq entry (concat
263 ;; (buffer-substring start-point (point)) "\n"))
264 (setq entry
(buffer-substring start-point
(point)))
266 ;; Check if other regexp match as well
267 (setq re-list rest-re
)
269 (unless (string-match (car re-list
) entry
)
271 (throw 'search-again nil
))
274 (setq alist
(reftex-parse-bibtex-entry
275 nil start-point end-point
))
276 (push (cons "&entry" entry
) alist
)
278 ;; check for crossref entries
279 (if (assoc "crossref" alist
)
282 alist
(reftex-get-crossref-alist alist
))))
285 (push (cons "&formatted" (reftex-format-bib-entry alist
))
288 ;; make key the first element
289 (push (reftex-get-bib-field "&key" alist
) alist
)
291 ;; add it to the list
292 (push alist found-list
)))))
293 (reftex-kill-temporary-buffers))))
294 (setq found-list
(nreverse found-list
))
298 ((eq 'author reftex-sort-bibtex-matches
)
299 (sort found-list
'reftex-bib-sort-author
))
300 ((eq 'year reftex-sort-bibtex-matches
)
301 (sort found-list
'reftex-bib-sort-year
))
302 ((eq 'reverse-year reftex-sort-bibtex-matches
)
303 (sort found-list
'reftex-bib-sort-year-reverse
))
306 (defun reftex-bib-sort-author (e1 e2
)
307 (let ((al1 (reftex-get-bib-names "author" e1
))
308 (al2 (reftex-get-bib-names "author" e2
)))
309 (while (and al1 al2
(string= (car al1
) (car al2
)))
312 (if (and (stringp (car al1
))
314 (string< (car al1
) (car al2
))
315 (not (stringp (car al1
))))))
317 (defun reftex-bib-sort-year (e1 e2
)
318 (< (string-to-number (or (cdr (assoc "year" e1
)) "0"))
319 (string-to-number (or (cdr (assoc "year" e2
)) "0"))))
321 (defun reftex-bib-sort-year-reverse (e1 e2
)
322 (> (string-to-number (or (cdr (assoc "year" e1
)) "0"))
323 (string-to-number (or (cdr (assoc "year" e2
)) "0"))))
325 (defun reftex-get-crossref-alist (entry)
326 ;; return the alist from a crossref entry
327 (let ((crkey (cdr (assoc "crossref" entry
)))
332 (if (re-search-forward
333 (concat "@\\w+[{(][ \t\n\r]*" (regexp-quote crkey
)
334 "[ \t\n\r]*,") nil t
)
336 (setq start
(match-beginning 0))
340 (reftex-parse-bibtex-entry nil start
(point)))
343 ;; Parse the bibliography environment
344 (defun reftex-extract-bib-entries-from-thebibliography (files)
345 ;; Extract bib-entries from the \begin{thebibliography} environment.
346 ;; Parsing is not as good as for the BibTeX database stuff.
347 ;; The environment should be located in file FILE.
349 (let* (start end buf entries re re-list file default
)
351 (error "Need file name to find thebibliography environment"))
352 (while (setq file
(pop files
))
353 (setq buf
(reftex-get-file-buffer-force
354 file
(not reftex-keep-temporary-buffers
)))
356 (error "No such file %s" file
))
357 (message "Scanning thebibliography environment in %s" file
)
359 (with-current-buffer buf
362 (goto-char (point-min))
363 (while (re-search-forward
364 "\\(\\`\\|[\n\r]\\)[ \t]*\\\\begin{thebibliography}" nil t
)
365 (beginning-of-line 2)
367 (if (re-search-forward
368 "\\(\\`\\|[\n\r]\\)[ \t]*\\\\end{thebibliography}" nil t
)
370 (beginning-of-line 1)
372 (when (and start end
)
375 (mapcar 'reftex-parse-bibitem
378 (buffer-substring-no-properties start end
)
379 "[ \t\n\r]*\\\\bibitem\\(\\[[^]]*]\\)*"))))))
382 (error "No bibitems found"))
384 ;; Read a regexp, completing on known citation keys.
385 (setq default
(regexp-quote (reftex-get-bibkey-default)))
390 "Regex { && Regex...}: "
393 (if (fboundp 'LaTeX-bibitem-list
)
395 (cdr (assoc 'bibview-cache
396 (symbol-value reftex-docstruct-symbol
))))
398 nil nil nil
'reftex-cite-regexp-hist
)
401 (if (or (null re-list
) (equal re-list
'("")))
402 (setq re-list
(list default
)))
404 (if (string-match "\\`[ \t]*\\'" (car re-list
))
405 (error "Empty regular expression"))
407 (while (and (setq re
(pop re-list
)) entries
)
411 (if (string-match re
(cdr (assoc "&entry" x
)))
417 (push (cons "&formatted" (reftex-format-bibitem x
)) x
)
418 (push (reftex-get-bib-field "&key" x
) x
)
424 (defun reftex-get-bibkey-default ()
425 ;; Return the word before the cursor. If the cursor is in a
426 ;; citation macro, return the word before the macro.
427 (let* ((macro (reftex-what-macro 1)))
429 (if (and macro
(string-match "cite" (car macro
)))
430 (goto-char (cdr macro
)))
431 (skip-chars-backward "^a-zA-Z0-9")
432 (reftex-this-word))))
434 ;; Parse and format individual entries
436 (defun reftex-get-bib-names (field entry
)
437 ;; Return a list with the author or editor names in ENTRY
438 (let ((names (reftex-get-bib-field field entry
)))
440 (setq names
(reftex-get-bib-field "editor" entry
)))
441 (while (string-match "\\band\\b[ \t]*" names
)
442 (setq names
(replace-match "\n" nil t names
)))
443 (while (string-match "[\\.a-zA-Z\\-]+\\.[ \t]*\\|,.*\\|[{}]+" names
)
444 (setq names
(replace-match "" nil t names
)))
445 (while (string-match "^[ \t]+\\|[ \t]+$" names
)
446 (setq names
(replace-match "" nil t names
)))
447 (while (string-match "[ \t][ \t]+" names
)
448 (setq names
(replace-match " " nil t names
)))
449 (split-string names
"\n")))
451 (defun reftex-parse-bibtex-entry (entry &optional from to
)
452 (let (alist key start field
)
457 (set-buffer (get-buffer-create " *RefTeX-scratch*"))
459 (set-syntax-table reftex-syntax-table-for-bib
)
463 (narrow-to-region from to
))
464 (goto-char (point-min))
466 (if (re-search-forward
467 "@\\(\\w+\\)[ \t\n\r]*[{(][ \t\n\r]*\\([^ \t\n\r,]+\\)" nil t
)
470 (cons "&type" (downcase (reftex-match-string 1)))
471 (cons "&key" (reftex-match-string 2)))))
472 (while (re-search-forward "\\(\\w+\\)[ \t\n\r]*=[ \t\n\r]*" nil t
)
473 (setq key
(downcase (reftex-match-string 1)))
475 ((= (following-char) ?
{)
481 ((= (following-char) ?
\")
484 (while (and (search-forward "\"" nil t
)
485 (= ?
\\ (char-after (- (point) 2))))))
488 (re-search-forward "[ \t]*[\n\r,}]" nil
1)))
489 (setq field
(buffer-substring-no-properties start
(1- (point))))
490 ;; remove extra whitespace
491 (while (string-match "[\n\t\r]\\|[ \t][ \t]+" field
)
492 (setq field
(replace-match " " nil t field
)))
493 ;; remove leading garbage
494 (if (string-match "^[ \t{]+" field
)
495 (setq field
(replace-match "" nil t field
)))
496 ;; remove trailing garbage
497 (if (string-match "[ \t}]+$" field
)
498 (setq field
(replace-match "" nil t field
)))
499 (push (cons key field
) alist
))))
502 (defun reftex-get-bib-field (fieldname entry
&optional format
)
503 ;; Extract the field FIELDNAME from an ENTRY
504 (let ((cell (assoc fieldname entry
)))
507 (format format
(cdr cell
))
511 (defun reftex-format-bib-entry (entry)
512 ;; Format a BibTeX ENTRY so that it is nice to look at
514 ((auth-list (reftex-get-bib-names "author" entry
))
515 (authors (mapconcat 'identity auth-list
", "))
516 (year (reftex-get-bib-field "year" entry
))
517 (title (reftex-get-bib-field "title" entry
))
518 (type (reftex-get-bib-field "&type" entry
))
519 (key (reftex-get-bib-field "&key" entry
))
522 ((equal type
"article")
523 (concat (reftex-get-bib-field "journal" entry
) " "
524 (reftex-get-bib-field "volume" entry
) ", "
525 (reftex-get-bib-field "pages" entry
)))
527 (concat "book (" (reftex-get-bib-field "publisher" entry
) ")"))
528 ((equal type
"phdthesis")
529 (concat "PhD: " (reftex-get-bib-field "school" entry
)))
530 ((equal type
"mastersthesis")
531 (concat "Master: " (reftex-get-bib-field "school" entry
)))
532 ((equal type
"inbook")
533 (concat "Chap: " (reftex-get-bib-field "chapter" entry
)
534 ", pp. " (reftex-get-bib-field "pages" entry
)))
535 ((or (equal type
"conference")
536 (equal type
"incollection")
537 (equal type
"inproceedings"))
538 (reftex-get-bib-field "booktitle" entry
"in: %s"))
540 (setq authors
(reftex-truncate authors
30 t t
))
541 (when (reftex-use-fonts)
542 (put-text-property 0 (length key
) 'face
543 (reftex-verified-face reftex-label-face
544 'font-lock-constant-face
545 'font-lock-reference-face
)
547 (put-text-property 0 (length authors
) 'face reftex-bib-author-face
549 (put-text-property 0 (length year
) 'face reftex-bib-year-face
551 (put-text-property 0 (length title
) 'face reftex-bib-title-face
553 (put-text-property 0 (length extra
) 'face reftex-bib-extra-face
555 (concat key
"\n " authors
" " year
" " extra
"\n " title
"\n\n")))
557 (defun reftex-parse-bibitem (item)
558 ;; Parse a \bibitem entry
559 (let ((key "") (text ""))
560 (when (string-match "\\`{\\([^}]+\\)}\\([^\000]*\\)" item
)
561 (setq key
(match-string 1 item
)
562 text
(match-string 2 item
)))
563 ;; Clean up the text a little bit
564 (while (string-match "[\n\r\t]\\|[ \t][ \t]+" text
)
565 (setq text
(replace-match " " nil t text
)))
566 (if (string-match "\\`[ \t]+" text
)
567 (setq text
(replace-match "" nil t text
)))
571 (cons "&entry" (concat key
" " text
)))))
573 (defun reftex-format-bibitem (item)
574 ;; Format a \bibitem entry so that it is (relatively) nice to look at.
575 (let ((text (reftex-get-bib-field "&text" item
))
576 (key (reftex-get-bib-field "&key" item
))
579 ;; Wrap the text into several lines.
580 (while (and (> (length text
) 70)
581 (string-match " " (substring text
60)))
582 (push (substring text
0 (+ 60 (match-beginning 0))) lines
)
583 (setq text
(substring text
(+ 61 (match-beginning 0)))))
585 (setq text
(mapconcat 'identity
(nreverse lines
) "\n "))
587 (when (reftex-use-fonts)
588 (put-text-property 0 (length text
) 'face reftex-bib-author-face text
))
589 (concat key
"\n " text
"\n\n")))
594 (defun reftex-citation (&optional no-insert format-key
)
595 "Make a citation using BibTeX database files.
596 After prompting for a regular expression, scans the buffers with
597 bibtex entries (taken from the \\bibliography command) and offers the
598 matching entries for selection. The selected entry is formatted according
599 to `reftex-cite-format' and inserted into the buffer.
601 If NO-INSERT is non-nil, nothing is inserted, only the selected key returned.
603 FORMAT-KEY can be used to pre-select a citation format.
605 When called with a `C-u' prefix, prompt for optional arguments in
606 cite macros. When called with a numeric prefix, make that many
607 citations. When called with point inside the braces of a `\\cite'
608 command, it will add another key, ignoring the value of
609 `reftex-cite-format'.
611 The regular expression uses an expanded syntax: && is interpreted as `and'.
612 Thus, `aaaa&&bbb' matches entries which contain both `aaaa' and `bbb'.
613 While entering the regexp, completion on knows citation keys is possible.
614 `=' is a good regular expression to match all entries in all files."
618 ;; check for recursive edit
619 (reftex-check-recursive-edit)
621 ;; This function may also be called outside reftex-mode.
622 ;; Thus look for the scanning info only if in reftex-mode.
625 (reftex-access-scan-info nil
))
627 ;; Call reftex-do-citation, but protected
629 (reftex-do-citation current-prefix-arg no-insert format-key
)
630 (reftex-kill-temporary-buffers)))
632 (defun reftex-do-citation (&optional arg no-insert format-key
)
633 ;; This really does the work of reftex-citation.
635 (let* ((format (reftex-figure-out-cite-format arg no-insert format-key
))
636 (docstruct-symbol reftex-docstruct-symbol
)
637 (selected-entries (reftex-offer-bib-menu))
638 (insert-entries selected-entries
)
639 entry string cite-view
)
641 (when (stringp selected-entries
)
642 (error selected-entries
))
643 (unless selected-entries
(error "Quit"))
645 (if (stringp selected-entries
)
647 (setq selected-entries nil
648 insert-entries
(list (list selected-entries
649 (cons "&key" selected-entries
))))
650 ;; It makes sense to compute the cite-view strings.
653 (when (eq (car selected-entries
) 'concat
)
654 ;; All keys go into a single command - we need to trick a little
655 ;; FIXME: Unfortunately, this meens that commenting does not work right.
656 (pop selected-entries
)
657 (let ((concat-keys (mapconcat 'car selected-entries
",")))
659 (list (list concat-keys
(cons "&key" concat-keys
))))))
663 ;; We shall insert this into the buffer...
664 (message "Formatting...")
666 (while (setq entry
(pop insert-entries
))
667 ;; Format the citation and insert it
668 (setq string
(if reftex-format-cite-function
669 (funcall reftex-format-cite-function
670 (reftex-get-bib-field "&key" entry
)
672 (reftex-format-citation entry format
)))
673 (when (or (eq reftex-cite-prompt-optional-args t
)
674 (and reftex-cite-prompt-optional-args
676 (let ((start 0) (nth 0) value
)
677 (while (setq start
(string-match "\\[\\]" string start
))
678 (setq value
(read-string (format "Optional argument %d: "
679 (setq nth
(1+ nth
)))))
680 (setq string
(replace-match (concat "[" value
"]") t t string
))
681 (setq start
(1+ start
)))))
682 ;; Should we cleanup empty optional arguments?
683 ;; if the first is empty, it can be removed. If the second is empty,
684 ;; it has to go. If there is only a single arg and empty, it can go
686 (when reftex-cite-cleanup-optional-args
688 ((string-match "\\([a-zA-Z0-9]\\)\\[\\]{" string
)
689 (setq string
(replace-match "\\1{" nil nil string
)))
690 ((string-match "\\[\\]\\(\\[[a-zA-Z0-9., ]+\\]\\)" string
)
691 (setq string
(replace-match "\\1" nil nil string
)))
692 ((string-match "\\[\\]\\[\\]" string
)
693 (setq string
(replace-match "" t t string
)))))
696 ;; Reposition cursor?
697 (when (string-match "\\?" string
)
698 (search-backward "?")
702 (when (and reftex-mode
703 (fboundp 'LaTeX-add-bibitems
)
704 reftex-plug-into-AUCTeX
)
705 (apply 'LaTeX-add-bibitems
(mapcar 'car selected-entries
)))
707 ;; Produce the cite-view strings
708 (when (and reftex-mode reftex-cache-cite-echo cite-view
)
709 (mapc (lambda (entry)
710 (reftex-make-cite-echo-string entry docstruct-symbol
))
715 (set-marker reftex-select-return-marker nil
)
716 (reftex-kill-buffer "*RefTeX Select*")
718 ;; Check if the prefix arg was numeric, and call recursively
722 (skip-chars-backward "}")
724 (reftex-do-citation arg
))
727 ;; Return the citation key
728 (car (car selected-entries
))))
730 (defun reftex-figure-out-cite-format (arg &optional no-insert format-key
)
731 ;; Check if there is already a cite command at point and change cite format
732 ;; in order to only add another reference in the same cite command.
733 (let ((macro (car (reftex-what-macro 1)))
734 (cite-format-value (reftex-get-cite-format))
738 ;; Format does not really matter because nothing will be inserted.
741 ((and (stringp macro
)
742 (string-match "\\`\\\\cite\\|cite\\'" macro
))
743 ;; We are already inside a cite macro
744 (if (or (not arg
) (not (listp arg
)))
747 (if (member (preceding-char) '(?\
{ ?
,)) "" ",")
749 (if (member (following-char) '(?\
} ?
,)) "" ",")))
752 ;; Figure out the correct format
754 (if (and (symbolp cite-format-value
)
755 (assq cite-format-value reftex-cite-format-builtin
))
756 (nth 2 (assq cite-format-value reftex-cite-format-builtin
))
761 (reftex-select-with-char
762 "" (concat "SELECT A CITATION FORMAT\n\n"
765 (format "[%c] %s %s" (car x
)
766 (if (> (car x
) 31) " " "")
769 (if (assq key format
)
770 (setq format
(cdr (assq key format
)))
771 (error "No citation format associated with key `%c'" key
)))))
774 (defun reftex-citep ()
775 "Call `reftex-citation' with a format selector `?p'."
777 (reftex-citation nil ?p
))
779 (defun reftex-citet ()
780 "Call `reftex-citation' with a format selector `?t'."
782 (reftex-citation nil ?t
))
784 (defvar reftex-select-bib-map
)
785 (defun reftex-offer-bib-menu ()
786 ;; Offer bib menu and return list of selected items
788 (let ((bibtype (reftex-bib-or-thebib))
789 found-list rtn key data selected-entries
)
797 ; ((assq 'bib (symbol-value reftex-docstruct-symbol))
798 ;; using BibTeX database files.
799 (reftex-extract-bib-entries (reftex-get-bibfile-list)))
800 ((eq bibtype
'thebib
)
801 ; ((assq 'thebib (symbol-value reftex-docstruct-symbol))
802 ;; using thebibliography environment.
803 (reftex-extract-bib-entries-from-thebibliography
807 'thebib
(symbol-value reftex-docstruct-symbol
))))))
808 (reftex-default-bibliography
809 (message "Using default bibliography")
810 (reftex-extract-bib-entries (reftex-default-bibliography)))
811 (t (error "No valid bibliography in this document, and no default available"))))
814 (error "Sorry, no matches found"))
816 ;; Remember where we came from
817 (setq reftex-call-back-to-this-buffer
(current-buffer))
818 (set-marker reftex-select-return-marker
(point))
821 (save-window-excursion
822 (delete-other-windows)
823 (reftex-kill-buffer "*RefTeX Select*")
824 (switch-to-buffer-other-window "*RefTeX Select*")
825 (unless (eq major-mode
'reftex-select-bib-mode
)
826 (reftex-select-bib-mode))
827 (let ((buffer-read-only nil
))
829 (reftex-insert-bib-matches found-list
))
830 (setq buffer-read-only t
)
831 (if (= 0 (buffer-size))
832 (error "No matches found"))
833 (setq truncate-lines t
)
838 reftex-citation-prompt
840 reftex-select-bib-map
842 'reftex-bibtex-selection-callback nil
))
845 (unless key
(throw 'done t
))
851 ;; Restrict with new regular expression
852 (setq found-list
(reftex-restrict-bib-matches found-list
))
853 (let ((buffer-read-only nil
))
855 (reftex-insert-bib-matches found-list
))
859 (setq selected-entries
860 (if reftex-select-marked
861 (mapcar 'car
(nreverse reftex-select-marked
))
865 ;; Take all (marked), and push the symbol 'concat
866 (setq selected-entries
868 (if reftex-select-marked
869 (mapcar 'car
(nreverse reftex-select-marked
))
873 ;; Take all (marked), and push the symbol 'concat
874 (reftex-extract-bib-file found-list reftex-select-marked
)
875 (setq selected-entries
"BibTeX database file created")
878 ;; Take all (marked), and push the symbol 'concat
879 (reftex-extract-bib-file found-list reftex-select-marked
881 (setq selected-entries
"BibTeX database file created")
886 (setq selected-entries
887 (if reftex-select-marked
889 (mapcar 'car
(nreverse reftex-select-marked
)))
890 (if data
(list data
) nil
)))
893 ;; Got this one with completion
894 (setq selected-entries key
)
900 (defun reftex-restrict-bib-matches (found-list)
901 ;; Limit FOUND-LIST with more regular expressions
902 (let ((re-list (split-string (read-string
903 "RegExp [ && RegExp...]: "
904 nil
'reftex-cite-regexp-hist
)
906 (found-list-r found-list
)
908 (while (setq re
(pop re-list
))
914 re
(cdr (assoc "&entry" x
)))
923 (defun reftex-extract-bib-file (all &optional marked complement
)
924 ;; Limit FOUND-LIST with more regular expressions
925 (let ((file (read-file-name "File to create: ")))
926 (find-file-other-window file
)
927 (if (> (buffer-size) 0)
929 (format "Overwrite non-empty file %s? " file
))
936 (if (or (and (assoc x marked
) (not complement
))
937 (and (not (assoc x marked
)) complement
))
938 (cdr (assoc "&entry" x
))
940 (cdr (assoc "&entry" x
))))
942 (insert (mapconcat 'identity all
"\n\n"))
944 (goto-char (point-min))))
946 (defun reftex-insert-bib-matches (list)
947 ;; Insert the bib matches and number them correctly
949 (if (memq reftex-highlight-selection
'(mouse both
))
950 reftex-mouse-selected-face
955 (setq tmp
(cdr (assoc "&formatted" x
))
957 (put-text-property 0 len
:data x tmp
)
958 (put-text-property 0 (1- len
) 'mouse-face mouse-face tmp
)
961 (run-hooks 'reftex-display-copied-context-hook
))
963 (defun reftex-format-names (namelist n
)
964 (let (last (len (length namelist
)))
965 (if (= n
0) (setq n len
))
968 ((= 1 len
) (car namelist
))
969 ((> len n
) (concat (car namelist
) (nth 2 reftex-cite-punctuation
)))
972 last
(nth (1- n
) namelist
))
973 (setcdr (nthcdr (- n
2) namelist
) nil
)
975 (mapconcat 'identity namelist
(nth 0 reftex-cite-punctuation
))
976 (nth 1 reftex-cite-punctuation
)
979 (defun reftex-format-citation (entry format
)
980 ;; Format a citation from the info in the BibTeX ENTRY
982 (unless (stringp format
) (setq format
"\\cite{%l}"))
984 (if (and reftex-comment-citations
985 (string-match "%l" reftex-cite-comment-format
))
986 (error "reftex-cite-comment-format contains invalid %%l"))
989 "\\(\\`\\|[^%]\\)\\(\\(%\\([0-9]*\\)\\([a-zA-Z]\\)\\)[.,;: ]*\\)"
991 (let ((n (string-to-number (match-string 4 format
)))
992 (l (string-to-char (match-string 5 format
)))
998 (reftex-get-bib-field "&key" entry
)
999 (if reftex-comment-citations
1000 reftex-cite-comment-format
1002 ((= l ?a
) (reftex-format-names
1003 (reftex-get-bib-names "author" entry
)
1005 ((= l ?A
) (car (reftex-get-bib-names "author" entry
)))
1006 ((= l ?b
) (reftex-get-bib-field "booktitle" entry
"in: %s"))
1007 ((= l ?B
) (reftex-abbreviate-title
1008 (reftex-get-bib-field "booktitle" entry
"in: %s")))
1009 ((= l ?c
) (reftex-get-bib-field "chapter" entry
))
1010 ((= l ?d
) (reftex-get-bib-field "edition" entry
))
1011 ((= l ?e
) (reftex-format-names
1012 (reftex-get-bib-names "editor" entry
)
1014 ((= l ?E
) (car (reftex-get-bib-names "editor" entry
)))
1015 ((= l ?h
) (reftex-get-bib-field "howpublished" entry
))
1016 ((= l ?i
) (reftex-get-bib-field "institution" entry
))
1017 ((= l ?j
) (reftex-get-bib-field "journal" entry
))
1018 ((= l ?k
) (reftex-get-bib-field "key" entry
))
1019 ((= l ?m
) (reftex-get-bib-field "month" entry
))
1020 ((= l ?n
) (reftex-get-bib-field "number" entry
))
1021 ((= l ?o
) (reftex-get-bib-field "organization" entry
))
1022 ((= l ?p
) (reftex-get-bib-field "pages" entry
))
1023 ((= l ?P
) (car (split-string
1024 (reftex-get-bib-field "pages" entry
)
1026 ((= l ?s
) (reftex-get-bib-field "school" entry
))
1027 ((= l ?u
) (reftex-get-bib-field "publisher" entry
))
1028 ((= l ?r
) (reftex-get-bib-field "address" entry
))
1029 ((= l ?t
) (reftex-get-bib-field "title" entry
))
1030 ((= l ?T
) (reftex-abbreviate-title
1031 (reftex-get-bib-field "title" entry
)))
1032 ((= l ?v
) (reftex-get-bib-field "volume" entry
))
1033 ((= l ?y
) (reftex-get-bib-field "year" entry
)))))
1035 (if (string= rpl
"")
1036 (setq b
(match-beginning 2) e
(match-end 2))
1037 (setq b
(match-beginning 3) e
(match-end 3)))
1038 (setq format
(concat (substring format
0 b
) rpl
(substring format e
)))))
1039 (while (string-match "%%" format
)
1040 (setq format
(replace-match "%" t t format
)))
1041 (while (string-match "[ ,.;:]*%<" format
)
1042 (setq format
(replace-match "" t t format
)))
1045 (defun reftex-make-cite-echo-string (entry docstruct-symbol
)
1046 ;; Format a bibtex entry for the echo area and cache the result.
1047 (let* ((key (reftex-get-bib-field "&key" entry
))
1049 (let* ((reftex-cite-punctuation '(" " " & " " etal.")))
1050 (reftex-format-citation entry reftex-cite-view-format
)))
1051 (cache (assq 'bibview-cache
(symbol-value docstruct-symbol
)))
1052 (cache-entry (assoc key
(cdr cache
))))
1054 ;; This docstruct has no cache - make one.
1055 (set docstruct-symbol
(cons (cons 'bibview-cache nil
)
1056 (symbol-value docstruct-symbol
))))
1057 (when reftex-cache-cite-echo
1058 (setq key
(copy-sequence key
))
1059 (set-text-properties 0 (length key
) nil key
)
1060 (set-text-properties 0 (length string
) nil string
)
1062 (unless (string= (cdr cache-entry
) string
)
1063 (setcdr cache-entry string
)
1064 (put reftex-docstruct-symbol
'modified t
))
1065 (push (cons key string
) (cdr cache
))
1066 (put reftex-docstruct-symbol
'modified t
)))
1069 (defun reftex-bibtex-selection-callback (data ignore no-revisit
)
1070 ;; Callback function to be called from the BibTeX selection, in
1071 ;; order to display context. This function is relatively slow and not
1072 ;; recommended for follow mode. It works OK for individual lookups.
1073 (let ((win (selected-window))
1074 (key (reftex-get-bib-field "&key" data
))
1075 bibfile-list item bibtype
)
1078 (with-current-buffer reftex-call-back-to-this-buffer
1079 (setq bibtype
(reftex-bib-or-thebib))
1082 ; ((assq 'bib (symbol-value reftex-docstruct-symbol))
1083 (setq bibfile-list
(reftex-get-bibfile-list)))
1084 ((eq bibtype
'thebib
)
1085 ; ((assq 'thebib (symbol-value reftex-docstruct-symbol))
1090 'thebib
(symbol-value reftex-docstruct-symbol
))))
1092 (reftex-default-bibliography
1093 (setq bibfile-list
(reftex-default-bibliography)))
1094 (t (ding) (throw 'exit nil
))))
1097 (setq bibfile-list
(reftex-visited-files bibfile-list
)))
1100 (reftex-pop-to-bibtex-entry
1101 key bibfile-list
(not reftex-keep-temporary-buffers
) t item
)
1104 (select-window win
)))
1106 ;;; Global BibTeX file
1107 (defun reftex-all-used-citation-keys ()
1108 (reftex-access-scan-info)
1109 (let ((files (reftex-all-document-files)) file keys kk k
)
1110 (save-current-buffer
1111 (while (setq file
(pop files
))
1112 (set-buffer (reftex-get-file-buffer-force file
'mark
))
1116 (goto-char (point-min))
1117 (while (re-search-forward "^[^%\n\r]*\\\\\\(bibentry\\|[a-zA-Z]*cite[a-zA-Z]*\\)\\(\\[[^\\]]*\\]\\)?{\\([^}]+\\)}" nil t
)
1118 (setq kk
(match-string-no-properties 3))
1119 (while (string-match "%.*\n?" kk
)
1120 (setq kk
(replace-match "" t t kk
)))
1121 (setq kk
(split-string kk
"[, \t\r\n]+"))
1122 (while (setq k
(pop kk
))
1124 (setq keys
(cons k keys
)))))))))
1125 (reftex-kill-temporary-buffers)
1128 (defun reftex-create-bibtex-file (bibfile)
1129 "Create a new BibTeX database file with all entries referenced in document.
1130 The command prompts for a filename and writes the collected entries to
1131 that file. Only entries referenced in the current document with
1132 any \\cite-like macros are used.
1133 The sequence in the new file is the same as it was in the old database."
1134 (interactive "FNew BibTeX file: ")
1135 (let ((keys (reftex-all-used-citation-keys))
1136 (files (reftex-get-bibfile-list))
1137 file key entries beg end entry
)
1138 (save-current-buffer
1139 (while (setq file
(pop files
))
1140 (set-buffer (reftex-get-file-buffer-force file
'mark
))
1141 (reftex-with-special-syntax-for-bib
1145 (goto-char (point-min))
1146 (while (re-search-forward
1147 "^[ \t]*@[a-zA-Z]+[ \t]*{\\([^ \t\r\n]+\\),"
1149 (setq key
(match-string 1)
1150 beg
(match-beginning 0)
1152 (goto-char (match-beginning 1))
1155 (error (goto-char (match-end 0))))
1157 (when (member key keys
)
1158 (setq entry
(buffer-substring beg end
)
1159 entries
(cons entry entries
)
1160 keys
(delete key keys
)))))))))
1161 (find-file-other-window bibfile
)
1162 (if (> (buffer-size) 0)
1163 (unless (yes-or-no-p
1164 (format "Overwrite non-empty file %s? " bibfile
))
1167 (insert (mapconcat 'identity
(reverse entries
) "\n\n"))
1168 (goto-char (point-min))
1170 (message "%d entries extracted and copied to new database"
1174 ;; arch-tag: d53d0a5a-ab32-4b52-a846-2a7c3527cd89
1175 ;;; reftex-cite.el ends here