Mercurial > emacs
annotate lisp/textmodes/refbib.el @ 112453:06719a229a46 default tip
* calc/calc.el (calc-default-power-reference-level)
(calc-default-field-reference-level): New variables.
* calc/calc-units.el (math-standard-units): Add dB and Np.
(math-logunits): New variable.
(math-extract-logunits, math-logcombine, calcFunc-luplus)
(calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
(calcFunc-fieldlevel, calcFunc-powerlevel, calc-level): New
functions.
(math-find-base-units-rec): Add entry for ln(10).
* calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
(calc-ul-prefix-help): New function.
* calc/calc-ext.el (calc-init-extensions): Autoload new units
functions. Add keybindings for new units functions.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Sun, 23 Jan 2011 23:08:04 -0600 |
parents | ef719132ddfa |
children |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; refbib.el --- convert refer-style references to ones usable by Latex bib |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
74509 | 3 ;; Copyright (C) 1989, 2001, 2002, 2003, 2004, 2005, |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
4 ;; 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
845 | 5 |
829
f6f8f3eae92f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
6 ;; Author: Henry Kautz <kautz@research.att.com> |
64791
ef236edf96ec
No more contact with Henry Kautz.
Richard M. Stallman <rms@gnu.org>
parents:
64751
diff
changeset
|
7 ;; Maintainer: FSF |
829
f6f8f3eae92f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
8 ;; Keywords: bib, tex |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
9 |
36 | 10 ;; This file is part of GNU Emacs. |
11 | |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
36 | 13 ;; it under the terms of the GNU General Public License as published by |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
36 | 16 |
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. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
36 | 24 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
25 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
26 |
36 | 27 ;; Use: from a buffer containing the refer-style bibliography, |
28 ;; M-x r2b-convert-buffer | |
29 ;; Program will prompt for an output buffer name, and will log | |
30 ;; warnings during the conversion process in the buffer *Log*. | |
31 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
32 ;;; Change Log: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
33 |
14169 | 34 ;; HISTORY |
35 ;; 9/88, created H.Kautz | |
36 ;; modified 1/19/89, allow books with editor but no author; | |
37 ;; added %O ordering field; | |
60918
58a53f588384
* textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el,
Werner LEMBERG <wl@gnu.org>
parents:
52401
diff
changeset
|
38 ;; appended invalid multiple fields, instead of |
14169 | 39 ;; discarding; |
40 ;; added rule, a tech report whose %R number | |
41 ;; contains "ISBN" is really a book | |
42 ;; added rule, anything with an editor is a book | |
43 ;; or a proceedings | |
44 ;; added 'manual type, for items with institution | |
45 ;; but no author or editor | |
46 ;; fixed bug so trailing blanks are trimmed | |
47 ;; added 'proceedings type | |
48 ;; used "organization" field for proceedings | |
49 ;; modified 2/16/89, updated help messages | |
50 ;; modified 2/23/89, include capitalize stop words in r2b stop words, | |
51 ;; fixed problems with contractions (e.g. it's), | |
52 ;; caught multiple stop words in a row | |
53 ;; modified 3/1/89, fixed capitalize-title for first words all caps | |
54 ;; modified 3/15/89, allow use of " to delimit fields | |
55 ;; modified 4/18/89, properly "quote" special characters on output | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
56 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
57 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
58 |
36 | 59 ;********************************************************** |
60 ; User Parameters | |
61 | |
20959 | 62 (defgroup refbib nil |
63 "Convert refer-style references to ones usable by Latex bib." | |
64 :prefix "r2b-" | |
65 :group 'wp) | |
36 | 66 |
20959 | 67 (defcustom r2b-trace-on nil |
68 "*Non-nil means trace conversion." | |
69 :type 'boolean | |
70 :group 'refbib) | |
71 | |
72 (defcustom r2b-journal-abbrevs | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
73 '( |
20959 | 74 ) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
75 "Abbreviation list for journal names. |
36 | 76 If the car of an element matches a journal name exactly, it is replaced by |
77 the cadr when output. Braces must be included if replacement is a | |
78 {string}, but not if replacement is a bibtex abbreviation. The cadr | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
79 may be eliminated if is exactly the same as the car. |
36 | 80 Because titles are capitalized before matching, the abbreviation |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
81 for the journal name should be listed as beginning with a capital |
36 | 82 letter, even if it really doesn't. |
83 For example, a value of '((\"Aij\" \"{Artificial Intelligence}\") | |
7639 | 84 \(\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
85 \"Artificial Intelligence\", but would replace Ijcai81 with the |
20959 | 86 BibTeX macro \"ijcai7\"." |
87 :type '(repeat (list string string)) | |
88 :group 'refbib) | |
36 | 89 |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
90 (defcustom r2b-booktitle-abbrevs |
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
91 '( |
20959 | 92 ) |
93 "Abbreviation list for book and proceedings names. | |
94 If the car of an element matches a title or booktitle exactly, it is | |
95 replaced by the cadr when output. Braces must be included if | |
96 replacement is a {string}, but not if replacement is a bibtex | |
97 abbreviation. The cadr may be eliminated if is exactly the same as | |
98 the car. | |
36 | 99 Because titles are capitalized before matching, the abbreviated title |
100 should be listed as beginning with a capital letter, even if it doesn't. | |
101 For example, a value of '((\"Aij\" \"{Artificial Intelligence}\") | |
7639 | 102 \(\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
103 \"Artificial Intelligence\", but would replace Ijcai81 with the |
20959 | 104 BibTeX macro \"ijcai7\"." |
105 :type '(repeat (list string string)) | |
106 :group 'refbib) | |
36 | 107 |
20959 | 108 (defcustom r2b-proceedings-list |
109 '() | |
110 "Assoc list of books or journals which are really conference proceedings, | |
243 | 111 but whose name and whose abbrev expansion (as defined in `r2b-journal-abbrevs' |
112 and `r2b-booktitle-abbrevs') does not contain the words \"conference\" or | |
113 \"proceedings\". (Those cases are handled automatically.) | |
36 | 114 The entry must match the given data exactly. |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
115 Because titles are capitalized before matching, the items in this list |
36 | 116 should begin with a capital letter. |
117 For example, suppose the title \"Ijcai81\" is used for the proceedings of | |
16420
35bc9eed0c1f
(r2b-proceedings-list, r2b-help-message): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
16284
diff
changeset
|
118 a conference, and its expansion is the BibTeX macro \"ijcai7\". Then |
243 | 119 `r2b-proceedings-list' should be '((\"Ijcai81\") ...). If instead its |
36 | 120 expansion were \"Proceedings of the Seventh International Conference |
243 | 121 on Artificial Intelligence\", then you would NOT need to include Ijcai81 |
20959 | 122 in `r2b-proceedings-list' (although it wouldn't cause an error)." |
123 :type '(repeat (list string string)) | |
124 :group 'refbib) | |
36 | 125 |
126 (defvar r2b-additional-stop-words | |
20959 | 127 "Some\\|What" |
128 "Words not to be used to build the citation key. | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
129 This is in addition to the `r2b-capitalize-title-stop-words'.") |
36 | 130 |
20959 | 131 (defcustom r2b-delimit-with-quote t |
132 "*If true, then use \" to delimit fields, otherwise use braces." | |
133 :type 'boolean | |
134 :group 'refbib) | |
36 | 135 |
136 ;********************************************************** | |
137 ; Utility Functions | |
138 | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
139 (defvar r2b-capitalize-title-stop-words |
36 | 140 (concat |
141 "the\\|and\\|of\\|is\\|a\\|an\\|of\\|for\\|in\\|to\\|in\\|on\\|at\\|" | |
142 "by\\|with\\|that\\|its") | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
143 "Words not to be capitalized in a title (unless the first word).") |
36 | 144 |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
145 (defvar r2b-capitalize-title-stop-regexp |
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
146 (concat "\\(" r2b-capitalize-title-stop-words "\\)\\(\\b\\|'\\)")) |
36 | 147 |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
148 (defun r2b-capitalize-title-region (begin end) |
243 | 149 "Like `capitalize-region', but don't capitalize stop words, except the first." |
36 | 150 (interactive "r") |
151 (let ((case-fold-search nil) (orig-syntax-table (syntax-table))) | |
152 (unwind-protect | |
153 (save-restriction | |
154 (set-syntax-table text-mode-syntax-table) | |
155 (narrow-to-region begin end) | |
156 (goto-char (point-min)) | |
157 (if (looking-at "[A-Z][a-z]*[A-Z]") | |
158 (forward-word 1) | |
159 (capitalize-word 1)) | |
160 (while (re-search-forward "\\<" nil t) | |
161 (if (looking-at "[A-Z][a-z]*[A-Z]") | |
162 (forward-word 1) | |
163 (if (let ((case-fold-search t)) | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
164 (looking-at r2b-capitalize-title-stop-regexp)) |
36 | 165 (downcase-word 1) |
166 (capitalize-word 1))) | |
167 )) | |
168 (set-syntax-table orig-syntax-table)))) | |
169 | |
170 | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
171 (defun r2b-capitalize-title (s) |
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
172 "Like `capitalize', but don't capitalize stop words, except the first." |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
173 (with-current-buffer (get-buffer-create "$$$Scratch$$$") |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
174 (erase-buffer) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
175 (insert s) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
176 (r2b-capitalize-title-region (point-min) (point-max)) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
177 (buffer-string))) |
36 | 178 |
179 ;********************************************************* | |
180 (defun r2b-reset () | |
243 | 181 "Unbind defvars, for debugging." |
36 | 182 (interactive) |
183 (makunbound 'r2b-journal-abbrevs) | |
184 (makunbound 'r2b-booktitle-abbrevs) | |
185 (makunbound 'r2b-proceedings-list) | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
186 (makunbound 'r2b-capitalize-title-stop-words) |
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
187 (makunbound 'r2b-capitalize-title-stop-regexp) |
36 | 188 (makunbound 'r2b-additional-stop-words) |
243 | 189 (makunbound 'r2b-stop-regexp)) |
36 | 190 |
191 (defvar r2b-stop-regexp | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
192 (concat "\\`\\(\\(" |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
193 r2b-additional-stop-words "\\|" r2b-capitalize-title-stop-words |
36 | 194 "\\)\\('\\w*\\)?\\W+\\)*\\([A-Z0-9]+\\)")) |
195 | |
196 | |
197 (defun r2b-trace (&rest args) | |
198 (if r2b-trace-on | |
199 (progn | |
200 (apply (function message) args) | |
243 | 201 (sit-for 0)))) |
36 | 202 |
203 (defun r2b-match (exp) | |
243 | 204 "Returns string matched in current buffer." |
36 | 205 (buffer-substring (match-beginning exp) (match-end exp))) |
206 | |
20959 | 207 (defcustom r2b-out-buf-name "*Out*" |
208 "*Name of buffer for output from refer-to-bibtex." | |
209 :type 'string | |
210 :group 'refbib) | |
211 | |
212 (defcustom r2b-log-name "*Log*" | |
213 "*Name of buffer for logs errors from refer-to-bibtex." | |
214 :type 'string | |
215 :group 'refbib) | |
216 | |
36 | 217 (defvar r2b-in-buf nil) |
218 (defvar r2b-out-buf nil) | |
219 (defvar r2b-log nil) | |
220 | |
221 (defvar r2b-error-found nil) | |
222 | |
93097 | 223 (defvar r2b-variables) (defvar r2bv-address) (defvar r2bv-annote) |
224 (defvar r2bv-author) (defvar r2bv-booktitle) (defvar r2bv-date) | |
225 (defvar r2bv-decade) (defvar r2bv-editor) (defvar r2bv-entry-kind) | |
226 (defvar r2bv-institution) (defvar r2bv-journal) (defvar r2bv-keywords) | |
227 (defvar r2bv-kn) (defvar r2bv-month) (defvar r2bv-note) | |
228 (defvar r2bv-number) (defvar r2bv-ordering) (defvar r2bv-organization) | |
229 (defvar r2bv-pages) (defvar r2bv-primary-author) (defvar r2bv-publisher) | |
230 (defvar r2bv-school) (defvar r2bv-title) (defvar r2bv-title-first-word) | |
231 (defvar r2bv-tr) (defvar r2bv-type) (defvar r2bv-volume) | |
232 (defvar r2bv-where) (defvar r2bv-year) | |
64815
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
233 |
36 | 234 (setq r2b-variables '( |
64815
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
235 r2b-error-found |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
236 r2bv-author |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
237 r2bv-primary-author |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
238 r2bv-date |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
239 r2bv-year |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
240 r2bv-decade |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
241 r2bv-month |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
242 r2bv-title |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
243 r2bv-title-first-word |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
244 r2bv-editor |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
245 r2bv-annote |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
246 r2bv-tr |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
247 r2bv-address |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
248 r2bv-institution |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
249 r2bv-keywords |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
250 r2bv-booktitle |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
251 r2bv-journal |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
252 r2bv-volume |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
253 r2bv-number |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
254 r2bv-pages |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
255 r2bv-booktitle |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
256 r2bv-kn |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
257 r2bv-publisher |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
258 r2bv-organization |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
259 r2bv-school |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
260 r2bv-type |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
261 r2bv-where |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
262 r2bv-note |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
263 r2bv-ordering |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
264 )) |
36 | 265 |
266 (defun r2b-clear-variables () | |
243 | 267 "Set all global vars used by r2b to nil." |
36 | 268 (let ((vars r2b-variables)) |
269 (while vars | |
270 (set (car vars) nil) | |
243 | 271 (setq vars (cdr vars))))) |
36 | 272 |
273 (defun r2b-warning (&rest args) | |
274 (setq r2b-error-found t) | |
275 (princ (apply (function format) args) r2b-log) | |
276 (princ "\n" r2b-log) | |
277 (princ "\n" r2b-out-buf) | |
278 (princ "% " r2b-out-buf) | |
243 | 279 (princ (apply (function format) args) r2b-out-buf)) |
36 | 280 |
281 (defun r2b-get-field (var field &optional unique required capitalize) | |
282 "Set VAR to string value of FIELD, if any. If none, VAR is set to | |
283 nil. If multiple fields appear, then separate values with the | |
284 '\\nand\\t\\t', unless UNIQUE is non-nil, in which case log a warning | |
285 and just concatenate the values. Trim off leading blanks and tabs on | |
286 first line, and trailing blanks and tabs of every line. Log a warning | |
287 and set VAR to the empty string if REQUIRED is true. Capitalize as a | |
288 title if CAPITALIZE is true. Returns value of VAR." | |
289 (let (item val (not-past-end t)) | |
290 (r2b-trace "snarfing %s" field) | |
291 (goto-char (point-min)) | |
292 (while (and not-past-end | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
293 (re-search-forward |
36 | 294 (concat "^" field "\\b[ \t]*\\(.*[^ \t\n]\\)[ \t]*") nil t)) |
295 (setq item (r2b-match 1)) | |
296 (while (and (setq not-past-end (zerop (forward-line 1))) | |
297 (not (looking-at "[ \t]*$\\|%"))) | |
298 (looking-at "\\(.*[^ \t\n]\\)[ \t]*$") | |
299 (setq item (concat item "\n" (r2b-match 1))) | |
300 ) | |
301 (if (null val) | |
302 (setq val item) | |
303 (if unique | |
304 (progn | |
60918
58a53f588384
* textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el,
Werner LEMBERG <wl@gnu.org>
parents:
52401
diff
changeset
|
305 (r2b-warning "*Invalid multiple field %s %s" field item) |
36 | 306 (setq val (concat val "\n" item)) |
307 ) | |
308 (setq val (concat val "\n\t\tand " item)) | |
309 ) | |
310 ) | |
311 ) | |
312 (if (and val capitalize) | |
16284
f4cc8bf7ca84
(r2b-capitalize-title-stop-words): Renamed from capit...
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
313 (setq val (r2b-capitalize-title val))) |
36 | 314 (set var val) |
315 (if (and (null val) required) | |
316 (r2b-require var)) | |
317 )) | |
318 | |
319 (defun r2b-set-match (var n regexp string ) | |
243 | 320 "Set VAR to the Nth subpattern in REGEXP matched by STRING, or nil if none." |
36 | 321 (set var |
322 (if (and (stringp string) (string-match regexp string)) | |
323 (substring string (match-beginning n) (match-end n)) | |
324 nil) | |
325 ) | |
326 ) | |
327 | |
328 (defvar r2b-month-abbrevs | |
329 '(("jan") ("feb") ("mar") ("apr") ("may") ("jun") ("jul") ("aug") | |
330 ("sep") ("oct") ("nov") ("dec"))) | |
331 | |
332 (defun r2b-convert-month () | |
243 | 333 "Try to convert `r2bv-month' to a standard 3 letter name." |
36 | 334 (if r2bv-month |
335 (let ((months r2b-month-abbrevs)) | |
336 (if (string-match "[^0-9]" r2bv-month) | |
337 (progn | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
338 (while (and months (not (string-match (car (car months)) |
36 | 339 r2bv-month))) |
340 (setq months (cdr months))) | |
341 (if months | |
342 (setq r2bv-month (car (car months))))) | |
343 (progn | |
344 (setq months (car (read-from-string r2bv-month))) | |
345 (if (and (numberp months) | |
346 (> months 0) | |
347 (< months 13)) | |
348 (setq r2bv-month (car (nth months r2b-month-abbrevs))) | |
349 (progn | |
350 (r2b-warning "* Ridiculous month") | |
351 (setq r2bv-month nil)) | |
352 )) | |
353 )) | |
354 ) | |
355 ) | |
356 | |
357 (defun r2b-snarf-input () | |
243 | 358 "Parse buffer into global variables." |
36 | 359 (let ((case-fold-search t)) |
360 (r2b-trace "snarfing...") | |
361 (sit-for 0) | |
362 (set-buffer r2b-in-buf) | |
363 (goto-char (point-min)) | |
364 (princ " " r2b-log) | |
365 (princ (buffer-substring (point) (progn (end-of-line) (point))) r2b-log) | |
366 (terpri r2b-log) | |
367 | |
368 (r2b-get-field 'r2bv-author "%A") | |
369 (r2b-get-field 'r2bv-editor "%E") | |
370 (cond | |
371 (r2bv-author | |
372 (r2b-set-match 'r2bv-primary-author 1 | |
373 "\\b\\(\\w+\\)[ \t]*\\($\\|,\\)" r2bv-author) | |
374 ) | |
375 (r2bv-editor | |
376 (r2b-set-match 'r2bv-primary-author 1 | |
377 "\\b\\(\\w+\\)[ \t]*\\($\\|,\\)" r2bv-editor) | |
378 ) | |
379 (t | |
380 (setq r2bv-primary-author "") | |
381 ) | |
382 ) | |
383 | |
384 (r2b-get-field 'r2bv-date "%D" t t) | |
385 (r2b-set-match 'r2bv-year 0 "[12][0-9][0-9][0-9]" r2bv-date) | |
386 (and (null r2bv-year) | |
387 (r2b-set-match 'r2bv-year 1 "[^0-9]\\([0-9][0-9]\\)$" r2bv-date) | |
388 (setq r2bv-year (concat "19" r2bv-year))) | |
389 (r2b-set-match 'r2bv-decade 1 "..\\(..\\)" r2bv-year) | |
390 (r2b-set-match 'r2bv-month 0 | |
391 "[0-9]+/\\|[a-zA-Z]+" r2bv-date) | |
392 (if (and (stringp r2bv-month) (string-match "\\(.*\\)/$" r2bv-month)) | |
393 (setq r2bv-month (substring r2bv-month 0 (match-end 1)))) | |
394 (r2b-convert-month) | |
395 | |
396 (r2b-get-field 'r2bv-title "%T" t t t) | |
397 (r2b-set-match 'r2bv-title-first-word 4 | |
398 r2b-stop-regexp | |
399 r2bv-title) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
400 |
36 | 401 (r2b-get-field 'r2bv-annote "%X" t ) |
402 (r2b-get-field 'r2bv-tr "%R" t) | |
403 (r2b-get-field 'r2bv-address "%C" t) | |
404 (r2b-get-field 'r2bv-institution "%I" t) | |
405 (r2b-get-field 'r2bv-keywords "%K") | |
406 (r2b-get-field 'r2bv-booktitle "%B" t nil t) | |
407 (r2b-get-field 'r2bv-journal "%J" t nil t) | |
408 (r2b-get-field 'r2bv-volume "%V" t) | |
409 (r2b-get-field 'r2bv-number "%N" t) | |
410 (r2b-get-field 'r2bv-pages "%P" t) | |
411 (r2b-get-field 'r2bv-where "%W" t) | |
412 (r2b-get-field 'r2bv-ordering "%O" t) | |
413 ) | |
414 ) | |
415 | |
416 | |
417 (defun r2b-put-field (field data &optional abbrevs) | |
243 | 418 "Print bibtex FIELD = {DATA} if DATA not null; precede |
36 | 419 with a comma and newline; if ABBREVS list is given, then |
243 | 420 try to replace the {DATA} with an abbreviation." |
36 | 421 (if data |
422 (let (match nodelim multi-line index) | |
423 (cond | |
424 ((and abbrevs (setq match (assoc data abbrevs))) | |
425 (if (null (cdr match)) | |
426 (setq data (car match)) | |
427 (setq data (car (cdr match)))) | |
428 (setq nodelim t)) | |
429 ((and (not (equal data "")) | |
430 (not (string-match "[^0-9]" data))) | |
431 (setq nodelim t)) | |
432 (t | |
433 (setq index 0) | |
434 (while (string-match "[\\~^]" data index) | |
435 (setq data (concat (substring data 0 (match-beginning 0)) | |
436 "\\verb+" | |
437 (substring data (match-beginning 0) (match-end 0)) | |
438 "+" | |
439 (substring data (match-end 0)))) | |
440 (setq index (+ (match-end 0) 7))) | |
441 (setq index 0) | |
442 (while (string-match "[$&%#_{}]" data index) | |
443 (setq data (concat (substring data 0 (match-beginning 0)) | |
444 "\\" | |
445 (substring data (match-beginning 0)))) | |
446 (setq index (+ (match-end 0) 1))) | |
447 (setq index 0) | |
448 (if r2b-delimit-with-quote | |
449 (while (string-match "\"" data index) | |
450 (setq data (concat (substring data 0 (match-beginning 0)) | |
451 "{\"}" | |
452 (substring data (match-end 0)))) | |
453 (setq index (+ (match-end 0) 2)))) | |
454 )) | |
455 (princ ", \n ") | |
456 (princ field) | |
457 (princ " =\t") | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
458 (if (not nodelim) |
36 | 459 (if r2b-delimit-with-quote |
460 (princ "\"") | |
461 (princ "{"))) | |
462 (string-match ".*" data) | |
463 (if (> (match-end 0) 59) | |
464 (princ "\n")) | |
465 (princ data) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
466 (if (not nodelim) |
36 | 467 (if r2b-delimit-with-quote |
468 (princ "\"") | |
469 (princ "}"))) | |
470 ) | |
471 )) | |
472 | |
473 | |
474 (defun r2b-require (vars) | |
243 | 475 "If any of VARS is null, set to empty string and log error." |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
476 (cond |
36 | 477 ((null vars)) |
478 ((listp vars) (r2b-require (car vars)) (r2b-require (cdr vars))) | |
479 (t | |
480 (if (null (symbol-value vars)) | |
481 (progn | |
482 (r2b-warning "*Missing value for field %s" vars) | |
483 (set vars "") | |
484 ))) | |
485 ) | |
486 ) | |
487 | |
488 | |
489 (defmacro r2b-moveq (new old) | |
243 | 490 "Set NEW to OLD and set OLD to nil." |
36 | 491 (list 'progn (list 'setq new old) (list 'setq old 'nil))) |
492 | |
493 (defun r2b-isa-proceedings (name) | |
243 | 494 "Return t if NAME is the name of proceedings." |
36 | 495 (and |
496 name | |
497 (or | |
498 (string-match "proceedings\\|conference" name) | |
499 (assoc name r2b-proceedings-list) | |
500 (let ((match (assoc name r2b-booktitle-abbrevs))) | |
501 (and match | |
502 (string-match "proceedings\\|conference" (car (cdr match))))) | |
503 ))) | |
504 | |
505 (defun r2b-isa-university (name) | |
243 | 506 "Return t if NAME is a university or similar organization, |
507 but not a publisher." | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
508 (and |
36 | 509 name |
510 (string-match "university" name) | |
511 (not (string-match "press" name)) | |
512 | |
513 )) | |
514 | |
515 (defun r2b-barf-output () | |
243 | 516 "Generate bibtex based on global variables." |
36 | 517 (let ((standard-output r2b-out-buf) (case-fold-search t) match) |
518 | |
519 (r2b-trace "...barfing") | |
520 (sit-for 0) | |
521 (set-buffer r2b-out-buf) | |
522 | |
523 (setq r2bv-kn (concat r2bv-primary-author r2bv-decade | |
524 r2bv-title-first-word)) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
525 |
36 | 526 (setq r2bv-entry-kind |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
527 (cond |
36 | 528 ((r2b-isa-proceedings r2bv-journal) |
529 (r2b-moveq r2bv-booktitle r2bv-journal) | |
530 (if (r2b-isa-university r2bv-institution) | |
531 (r2b-moveq r2bv-organization r2bv-institution) | |
532 (r2b-moveq r2bv-publisher r2bv-institution)) | |
533 (r2b-moveq r2bv-note r2bv-tr) | |
534 (r2b-require 'r2bv-author) | |
535 'inproceedings) | |
536 ((r2b-isa-proceedings r2bv-booktitle) | |
537 (if (r2b-isa-university r2bv-institution) | |
538 (r2b-moveq r2bv-organization r2bv-institution) | |
539 (r2b-moveq r2bv-publisher r2bv-institution)) | |
540 (r2b-moveq r2bv-note r2bv-tr) | |
541 (r2b-require 'r2bv-author) | |
542 'inproceedings) | |
543 ((and r2bv-tr (string-match "phd" r2bv-tr)) | |
544 (r2b-moveq r2bv-school r2bv-institution) | |
545 (r2b-require 'r2bv-school ) | |
546 (r2b-require 'r2bv-author) | |
547 'phdthesis) | |
548 ((and r2bv-tr (string-match "master" r2bv-tr)) | |
549 (r2b-moveq r2bv-school r2bv-institution) | |
550 (r2b-require 'r2bv-school ) | |
551 (r2b-require 'r2bv-author) | |
552 'mastersthesis) | |
553 ((and r2bv-tr (string-match "draft\\|unpublish" r2bv-tr)) | |
554 (r2b-moveq r2bv-note r2bv-institution) | |
555 (r2b-require 'r2bv-author) | |
556 'unpublished) | |
557 (r2bv-journal | |
558 (r2b-require 'r2bv-author) | |
559 'article) | |
560 (r2bv-booktitle | |
561 (r2b-moveq r2bv-publisher r2bv-institution) | |
562 (r2b-moveq r2bv-note r2bv-tr) | |
563 (r2b-require 'r2bv-publisher) | |
564 (r2b-require 'r2bv-author) | |
565 'incollection) | |
566 ((and r2bv-author | |
567 (null r2bv-editor) | |
568 (string-match "\\`personal communication\\'" r2bv-title)) | |
569 'misc) | |
570 ((r2b-isa-proceedings r2bv-title) | |
571 (if (r2b-isa-university r2bv-institution) | |
572 (r2b-moveq r2bv-organization r2bv-institution) | |
573 (r2b-moveq r2bv-publisher r2bv-institution)) | |
574 (r2b-moveq r2bv-note r2bv-tr) | |
575 'proceedings) | |
576 ((or r2bv-editor | |
577 (and r2bv-author | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
578 (or |
36 | 579 (null r2bv-tr) |
580 (string-match "\\bisbn\\b" r2bv-tr)))) | |
581 (r2b-moveq r2bv-publisher r2bv-institution) | |
582 (r2b-moveq r2bv-note r2bv-tr) | |
583 (r2b-require 'r2bv-publisher) | |
584 (if (null r2bv-editor) | |
585 (r2b-require 'r2bv-author)) | |
586 'book) | |
587 (r2bv-tr | |
588 (r2b-require 'r2bv-institution) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
589 (if (string-match |
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
590 "\\`\\(\\(.\\|\n\\)+\\)[ \t\n]+\\([^ \t\n]\\)+\\'" |
36 | 591 r2bv-tr) |
592 (progn | |
593 (setq r2bv-type (substring r2bv-tr 0 (match-end 1))) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
594 (setq r2bv-number (substring r2bv-tr |
36 | 595 (match-beginning 3))) |
596 (setq r2bv-tr nil)) | |
597 (r2b-moveq r2bv-number r2bv-tr)) | |
598 (r2b-require 'r2bv-author) | |
599 'techreport) | |
600 (r2bv-institution | |
601 (r2b-moveq r2bv-organization r2bv-institution) | |
602 'manual) | |
603 (t | |
604 'misc) | |
605 )) | |
606 | |
607 (r2b-require '( r2bv-year)) | |
608 | |
609 (if r2b-error-found | |
610 (princ "\n% Warning -- Errors During Conversion Next Entry\n")) | |
611 | |
612 (princ "\n@") | |
613 (princ r2bv-entry-kind) | |
614 (princ "( ") | |
615 (princ r2bv-kn) | |
616 | |
617 (r2b-put-field "author" r2bv-author ) | |
618 (r2b-put-field "title" r2bv-title r2b-booktitle-abbrevs) | |
619 (r2b-put-field "year" r2bv-year ) | |
620 | |
621 (r2b-put-field "month" r2bv-month r2b-month-abbrevs) | |
622 (r2b-put-field "journal" r2bv-journal r2b-journal-abbrevs) | |
623 (r2b-put-field "volume" r2bv-volume) | |
624 (r2b-put-field "type" r2bv-type) | |
625 (r2b-put-field "number" r2bv-number) | |
626 (r2b-put-field "booktitle" r2bv-booktitle r2b-booktitle-abbrevs) | |
627 (r2b-put-field "editor" r2bv-editor) | |
628 (r2b-put-field "publisher" r2bv-publisher) | |
629 (r2b-put-field "institution" r2bv-institution) | |
630 (r2b-put-field "organization" r2bv-organization) | |
631 (r2b-put-field "school" r2bv-school) | |
632 (r2b-put-field "pages" r2bv-pages) | |
633 (r2b-put-field "address" r2bv-address) | |
634 (r2b-put-field "note" r2bv-note) | |
635 (r2b-put-field "keywords" r2bv-keywords) | |
636 (r2b-put-field "where" r2bv-where) | |
637 (r2b-put-field "ordering" r2bv-ordering) | |
638 (r2b-put-field "annote" r2bv-annote) | |
639 | |
640 (princ " )\n") | |
641 ) | |
642 ) | |
643 | |
644 | |
64815
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
645 (defun r2b-convert-record (output) |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
646 "Transform current bib entry and append to buffer OUTPUT. |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
647 Do `\\[r2b-help]' for more info." |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
648 (interactive |
36 | 649 (list (read-string "Output to buffer: " r2b-out-buf-name))) |
650 (let (rec-end rec-begin not-done) | |
64815
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
651 (setq r2b-out-buf-name output) |
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
652 (setq r2b-out-buf (get-buffer-create output)) |
36 | 653 (setq r2b-in-buf (current-buffer)) |
654 (set-buffer r2b-out-buf) | |
655 (goto-char (point-max)) | |
656 (setq r2b-log (get-buffer-create r2b-log-name)) | |
657 (set-buffer r2b-log) | |
658 (goto-char (point-max)) | |
659 (set-buffer r2b-in-buf) | |
660 (setq not-done (re-search-forward "[^ \t\n]" nil t)) | |
661 (if not-done | |
662 (progn | |
663 (re-search-backward "^[ \t]*$" nil 2) | |
664 (re-search-forward "^%") | |
665 (beginning-of-line nil) | |
666 (setq rec-begin (point)) | |
667 (re-search-forward "^[ \t]*$" nil 2) | |
668 (setq rec-end (point)) | |
669 (narrow-to-region rec-begin rec-end) | |
670 (r2b-clear-variables) | |
671 (r2b-snarf-input) | |
672 (r2b-barf-output) | |
673 (set-buffer r2b-in-buf) | |
674 (widen) | |
675 (goto-char rec-end) | |
676 t) | |
677 nil | |
678 ) | |
679 )) | |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
680 |
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
24811
diff
changeset
|
681 |
64815
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
682 (defun r2b-convert-buffer (output) |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
683 "Transform current buffer and append to buffer OUTPUT. |
64815
d5907fe7fee3
(r2b-convert-record, r2b-convert-buffer): Improve argument/docstring
Juanma Barranquero <lekktu@gmail.com>
parents:
64791
diff
changeset
|
684 Do `\\[r2b-help]' for more info." |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
685 (interactive |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
686 (list (read-string "Output to buffer: " r2b-out-buf-name))) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
687 (with-current-buffer (setq r2b-log (get-buffer-create r2b-log-name)) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
688 (erase-buffer)) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
689 (widen) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
690 (goto-char (point-min)) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
691 (message "Working, please be patient...") |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
692 (sit-for 0) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
693 (while (r2b-convert-record output) t) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
694 (message "Done, results in %s, errors in %s" |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
695 r2b-out-buf-name r2b-log-name)) |
36 | 696 |
697 (defvar r2b-help-message | |
698 " Refer to Bibtex Bibliography Conversion | |
699 | |
700 A refer-style database is of the form: | |
701 | |
702 %A Joe Blow | |
703 %T Great Thoughts I've Thought | |
704 %D 1977 | |
705 etc. | |
706 | |
707 This utility converts these kind of databases to bibtex form, for | |
708 users of TeX and LaTex. Instructions: | |
709 1. Visit the file containing the refer-style database. | |
710 2. The command | |
711 M-x r2b-convert-buffer | |
16420
35bc9eed0c1f
(r2b-proceedings-list, r2b-help-message): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
16284
diff
changeset
|
712 converts the entire buffer, appending its output by default in a |
36 | 713 buffer named *Out*, and logging progress and errors in a buffer |
714 named *Log*. The original file is never modified. | |
715 Note that results are appended to *Out*, so if that buffer | |
716 buffer already exists and contains material you don't want to | |
717 save, you should kill it first. | |
718 3. Switch to the buffer *Out* and save it as a named file. | |
719 4. To convert a single refer-style entry, simply position the cursor | |
720 at the entry and enter | |
721 M-x r2b-convert-record | |
722 Again output is appended to *Out* and errors are logged in *Log*. | |
723 | |
724 This utility is very robust and pretty smart about determining the | |
725 type of the entry. It includes facilities for expanding refer macros | |
726 to text, or substituting bibtex macros. Do M-x describe-variable on | |
727 r2b-journal-abbrevs | |
728 r2b-booktitle-abbrevs | |
729 r2b-proceedings-list | |
730 for information on these features. | |
731 | |
829
f6f8f3eae92f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
732 Please send bug reports and suggestions to |
f6f8f3eae92f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
733 Henry Kautz |
f6f8f3eae92f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
734 kautz@research.att.com |
f6f8f3eae92f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
735 allegra!kautz") |
36 | 736 |
737 | |
738 (defun r2b-help () | |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
739 "Print help describing the `refbib' package." |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
740 (interactive) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
741 (with-output-to-temp-buffer "*Help*" |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
742 (princ r2b-help-message) |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
743 (with-current-buffer standard-output |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
744 (help-mode)))) |
36 | 745 |
24811
adcead6b7ce1
Don't print any messages or display
Karl Heuer <kwzh@gnu.org>
parents:
20959
diff
changeset
|
746 (provide 'refbib) |
584 | 747 (provide 'refer-to-bibtex) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
748 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
749 ;;; refbib.el ends here |