1 ;;; bib-mode.el --- major mode for editing bib files
3 ;; Copyright (C) 1989, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
27 ;; GNU Emacs code to help maintain databases compatible with (troff)
28 ;; refer and lookbib. The file bib-file should be set to your
29 ;; bibliography file. Keys are automagically inserted as you type,
30 ;; and appropriate keys are presented for various kinds of entries.
35 "Major mode for editing bib files."
40 (defcustom bib-file
"~/my-bibliography.bib"
41 "Default name of file used by `addbib'."
45 (defcustom unread-bib-file
"~/to-be-read.bib"
46 "Default name of file used by `unread-bib' in Bib mode."
50 (defvar bib-mode-map
(copy-keymap text-mode-map
))
51 (define-key bib-mode-map
"\C-M" 'return-key-bib
)
52 (define-key bib-mode-map
"\C-c\C-u" 'unread-bib
)
53 (define-key bib-mode-map
"\C-c\C-@" 'mark-bib
)
54 (define-key bib-mode-map
"\e`" 'abbrev-mode
)
57 "Set up editor to add to troff bibliography file specified
58 by global variable `bib-file'. See description of `bib-mode'."
61 (goto-char (point-max))
65 (define-derived-mode bib-mode text-mode
"Bib"
66 "Mode for editing `lookbib' style bibliographies.
67 Hit RETURN to get next % field key.
68 If you want to ignore this field, just hit RETURN again.
69 Use `text-mode' to turn this feature off.
71 journal papers: A* T D J V N P K W X
72 articles in books & proceedings: A* T D B E* I C P K W X
73 tech reports: A* T D R I C K W X
74 books: A* T D I C K W X
78 A uthor T itle D ate J ournal
79 V olume N umber P age K eywords
80 B in book or proceedings E ditor C ity & state
81 I nstitution, school, or publisher
82 R eport number or 'phd thesis' or 'masters thesis' or 'draft' or
83 'unnumbered' or 'unpublished'
84 W here can be found locally (login name, or ailib, etc.)
85 X comments (not used in indexing)
87 \\[unread-bib] appends current entry to a different file (for example,
88 a file of papers to be read in the future), given by the value of the
89 variable `unread-bib-file'.
90 \\[mark-bib] marks current or previous entry.
91 Abbreviations are saved in `bib-mode-abbrev-table'.
92 Hook can be stored in `bib-mode-hook'.
93 Field keys given by variable `bib-assoc'.
120 "Describes bibliographic database format.
121 A line beginning with the car of an entry is followed by one beginning
124 (defun bib-find-key (slots)
129 (progn (previous-line 1) (bib-find-key bib-assoc
))))
130 ((looking-at (car (car slots
)))
132 (t (bib-find-key (cdr slots
)))
136 (defcustom bib-auto-capitalize t
137 "*True to automatically capitalize appropriate fields in Bib mode."
141 (defconst bib-capitalized-fields
"%[AETCBIJR]")
143 (defun return-key-bib ()
144 "Magic when user hits return, used by `bib-mode'."
147 (let (empty new-key beg-current end-current
)
149 (setq empty
(looking-at "%. $"))
157 (setq end-current
(point))
159 (setq beg-current
(point))
160 (setq new-key
(bib-find-key bib-assoc
))
161 (if (and (not empty
) bib-auto-capitalize
162 (looking-at bib-capitalized-fields
))
164 (bib-capitalize-title-region (+ (point) 3) end-current
)))
165 (goto-char beg-current
)
174 "Set mark at beginning of current or previous bib entry, point at end."
176 (beginning-of-line nil
)
177 (if (looking-at "^ *$") (re-search-backward "[^ \n]" nil
2))
178 (re-search-backward "^ *$" nil
2)
179 (re-search-forward "^%")
180 (beginning-of-line nil
)
182 (re-search-forward "^ *$" nil
2)
184 (beginning-of-line nil
))
187 "Append current or previous entry to file of unread papers
188 named by variable `unread-bib-file'."
191 (if (get-file-buffer unread-bib-file
)
192 (append-to-buffer (get-file-buffer unread-bib-file
) (mark) (point))
193 (append-to-file (mark) (point) unread-bib-file
)))
196 (defvar bib-capitalize-title-stop-words
198 "the\\|and\\|of\\|is\\|a\\|an\\|of\\|for\\|in\\|to\\|in\\|on\\|at\\|"
199 "by\\|with\\|that\\|its")
200 "Words not to be capitalized in a title (unless the first word).")
202 (defvar bib-capitalize-title-stop-regexp
203 (concat "\\(" bib-capitalize-title-stop-words
"\\)\\(\\b\\|'\\)"))
205 (defun bib-capitalize-title-region (begin end
)
206 "Like `capitalize-region', but don't capitalize stop words, except the first."
208 (let ((case-fold-search nil
) (orig-syntax-table (syntax-table)))
211 (set-syntax-table text-mode-syntax-table
)
212 (narrow-to-region begin end
)
213 (goto-char (point-min))
214 (if (looking-at "[A-Z][a-z]*[A-Z]")
217 (while (re-search-forward "\\<" nil t
)
218 (if (looking-at "[A-Z][a-z]*[A-Z]")
220 (if (let ((case-fold-search t
))
221 (looking-at bib-capitalize-title-stop-regexp
))
223 (capitalize-word 1)))
225 (set-syntax-table orig-syntax-table
))))
228 (defun bib-capitalize-title (s)
229 "Like `capitalize', but don't capitalize stop words, except the first."
231 (set-buffer (get-buffer-create "$$$Scratch$$$"))
234 (bib-capitalize-title-region (point-min) (point-max))
239 ;;; arch-tag: e3a97958-3c2c-487f-9557-fafc3c98452d
240 ;;; bib-mode.el ends here