-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
org-ref-core.el
344 lines (275 loc) · 10.7 KB
/
org-ref-core.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
;;; org-ref-core.el --- citations, cross-references and bibliographies in org-mode -*- lexical-binding: t; -*-
;; Copyright(C) 2014-2024 John Kitchin
;; This file is not currently part of GNU Emacs.
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program ; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;;
;; This is the core library.
;;
;;; Code:
(eval-when-compile
(require 'cl-lib))
(require 'org)
;; the eval and compile seems especially necessary for native compilation on the newest Emacs.
(eval-and-compile (require 'org-macs))
(require 'org-element)
(require 'dash)
(require 'f)
(require 's)
(require 'parsebib)
(require 'bibtex-completion)
(require 'hydra)
(require 'org-ref-bibliography-links)
(require 'org-ref-citation-links)
(require 'org-ref-ref-links)
(require 'org-ref-label-link)
(require 'org-ref-misc-links)
(require 'org-ref-export)
(require 'org-ref-utils)
(require 'org-ref-bibtex)
(require 'org-ref-glossary)
(require 'openalex)
;;* Custom variables
(defgroup org-ref nil
"Customization group for org-ref."
:tag "Org Ref"
:group 'org)
(defcustom org-ref-insert-link-function
nil
"Generic function for inserting org-ref links.
The function should take a prefix arg.
No arg means insert a cite link
1 arg means insert a ref link
2 args means insert a label."
:type 'function
:group 'org-ref)
(defcustom org-ref-insert-cite-function
nil
"Function to call to insert citation links.
This function should prompt for keys with completion, and insert
the citation link into the buffer."
:type 'function
:group 'org-ref)
(defcustom org-ref-cite-completion-function
nil
"Function to prompt for keys with completion."
:type '(choice (const nil)
(function))
:group 'org-ref)
(defcustom org-ref-insert-label-function
nil
"Function to call to insert label links.
This function should prompt for a label, and insert the label
link."
:type 'function
:group 'org-ref)
(defcustom org-ref-insert-ref-function
nil
"Function to call to insert ref links.
This function should prompt for a label with completion, and
insert the ref link."
:type 'function
:group 'org-ref)
(defcustom org-ref-cite-onclick-function
nil
"Function that runs when you click on a cite link.
The function must take one argument which is the path of the link
that was clicked on."
:type 'function
:group 'org-ref)
(defvar org-ref-prefix-arg nil
"Variable to store a prefix arg during completion.")
(defun org-ref-minibuffer-prefix ()
"Hook function for `minibuffer-setup-hook'.
The idea is to locally bind C-u to a function that captures
prefix args in `org-ref-prefix-arg' so you can use them later."
(setq org-ref-prefix-arg nil)
(local-set-key (kbd "C-u") (lambda ()
(interactive)
(setq org-ref-prefix-arg
(if (null org-ref-prefix-arg)
'(4)
(list (* 4 (car org-ref-prefix-arg))))))))
;; * Bibliography related functions
(defun org-ref-find-bibliography ()
"Find the bibliography in the buffer.
This function sets and returns a list of files either from internal bibliographies, from files in the
BIBINPUTS env var, and finally falling back to what the user has
set in `bibtex-completion-bibliography'"
(let ((org-ref-bibliography-files ()))
(catch 'result
(save-excursion
(when (eq major-mode 'org-mode)
(org-with-wide-buffer
(goto-char (point-min))
;; This just searches for these strings, and then checks if it
;; is on a link. This is faster than parsing the org-file when
;; it gets large.
;; look for org-ref bibliography
(while (re-search-forward "\\(no\\)?bibliography:" nil t)
(let ((link (org-element-context)))
(when (and (eq (car link) 'link)
(member (org-element-property :type link) '("bibliography" "nobibliography")))
(setq org-ref-bibliography-files
(mapcar 'org-ref-get-bibfile-path
(mapcar 'string-trim (split-string
(org-element-property :path link)
","))))
(throw 'result (nreverse (delete-dups org-ref-bibliography-files))))))
(goto-char (point-min))
(while (re-search-forward "\\\\addbibresource{\\(.*\\)}" nil t)
(push (match-string 1) org-ref-bibliography-files))
(when org-ref-bibliography-files
(throw 'result (nreverse (delete-dups (mapcar 'org-ref-get-bibfile-path org-ref-bibliography-files)))))))
;; we did not find anything. use defaults. Make sure we have a list in
;; case it is a single string.
(throw 'result (if (listp bibtex-completion-bibliography)
bibtex-completion-bibliography
(list bibtex-completion-bibliography)))))))
(defun org-ref-key-in-file-p (key filename)
"Determine if the KEY is in the FILENAME."
(with-temp-buffer
(insert-file-contents filename)
(hack-local-variables)
(bibtex-set-dialect (parsebib-find-bibtex-dialect) t)
(bibtex-search-entry key)))
(defun org-ref-possible-bibfiles ()
"Make a unique list of possible bibliography files for completing-read"
(-uniq
(append
;; see if we should add it to a bib-file defined in the file
(org-ref-find-bibliography)
;; or any bib-files that exist in the current directory
(f-entries "." (lambda (f)
(and (not (string-match "#" f))
(f-ext? f "bib"))))
;; and last in the default bibliography
(if (stringp bibtex-completion-bibliography)
(list bibtex-completion-bibliography)
bibtex-completion-bibliography))))
(defun org-ref-get-bibtex-key-and-file (&optional key)
"Return a a cons cell of (KEY . file) that KEY is in.
If no key is provided, get one under point."
(unless key
(setq key (org-ref-get-bibtex-key-under-cursor)))
(cons key (save-window-excursion
(let ((bibtex-completion-bibliography (org-ref-find-bibliography)))
(bibtex-completion-show-entry (list key))
(buffer-file-name)))))
;; * Insert link functions
;;;###autoload
(defun org-ref-insert-link (arg)
"Insert an org-ref link.
If no prefix ARG insert a cite.
If one prefix ARG insert a ref.
If two prefix ARGs insert a label.
This is a generic function. Specific backends might
provide their own version."
(interactive "P")
(cond
((eq arg nil)
(funcall org-ref-insert-cite-function))
((equal arg '(4))
(funcall org-ref-insert-ref-function))
((equal arg '(16))
(funcall org-ref-insert-label-function))))
;; This is an alternative that doesn't rely on prefix args.
(defhydra org-ref-insert-link-hydra (:color red :hint nil)
"Insert an org-ref link
"
("[" (funcall org-ref-insert-cite-function) "Citation" :column "org-ref")
("]" (funcall org-ref-insert-ref-function) "Cross-reference" :column "org-ref")
("\\" (funcall org-ref-insert-label-function) "Label" :column "org-ref")
("bs" (insert (org-ref-bibliographystyle-complete-link)) "Bibliographystyle" :column "Bibliography" :color blue)
("bf" (insert (org-ref-bibliography-complete)) "Bibliography" :column "Bibliography" :color blue)
("nb" (insert (org-ref-nobibliography-complete)) "Bibliography" :column "Bibliography" :color blue)
("g" org-ref-insert-glossary-link "Glossary link" :column "Glossary" :color blue)
("a" org-ref-insert-acronym-link "Acronym link" :column "Glossary" :color blue)
("ng" (progn
(org-mark-ring-push)
(goto-char (point-min))
(if (re-search-forward "#\\+name: glossary" nil t)
(progn
(goto-char (org-element-property :contents-end (org-element-context)))
(backward-char)
(org-table-insert-row '(4)))
;; no table found
(goto-char (point-max))
(insert "\n\n#+name: glossary
| label | term | definition |
|-------+---------+-------------------------------|
| | | |")
(beginning-of-line)
(forward-char)))
"New glossary term" :column "Glossary")
("na" (progn
(org-mark-ring-push)
(goto-char (point-min))
(if (re-search-forward "#\\+name: acronym" nil t)
(progn
(goto-char (org-element-property :contents-end (org-element-context)))
(backward-char)
(org-table-insert-row '(4)))
;; no table found
(goto-char (point-max))
(insert "\n\n#+name: acronyms
| label | abbreviation | full form |
|-------+--------------+----------------------------|
| | | |")
(beginning-of-line)
(forward-char)))
"New acronym term" :column "Glossary")
("bd" doi-add-bibtex-entry "Add bibtex entry from a DOI" :column "Bibtex")
("bc" crossref-add-bibtex-entry "Add bibtex entry from Crossref" :column "Bibtex")
("bo" (find-file (completing-read "Bibliography: " (org-ref-find-bibliography)))
"Open bibtex file" :column "Bibtex")
("t" (insert "[[list-of-tables:]]\n") "List of tables" :column "Misc")
("f" (insert "[[list-of-figures:]]\n") "List of figures" :column "Misc")
("i" (insert (format "[[index:%s]]" (string-trim (read-string "Index entry: ")))) "Index entry" :column "Misc")
("pi" (insert "[[printindex:]]") "Print index" :column "Misc")
("pg" (insert "[[printglossaries:]]") "Print glossary" :column "Misc"))
;;* org-ref-help
;;;###autoload
(defun org-ref-help ()
"Open the `org-ref' manual."
(interactive)
(find-file (expand-file-name
"org-ref.org"
(file-name-directory
(find-library-name "org-ref")))))
;;* org-ref menu
(defun org-ref-org-menu ()
"Add `org-ref' menu to the Org menu."
(easy-menu-change
'("Org") "org-ref"
`(["Insert citation" ,org-ref-insert-cite-function]
["Insert ref" ,org-ref-insert-ref-function]
["Insert label" ,org-ref-insert-label-function]
"--"
["List of figures" org-ref-list-of-figures]
["List of tables" org-ref-list-of-tables]
["Extract bibtex entries" org-ref-extract-bibtex-entries]
["Check org-file" org-ref]
"--"
["Help" org-ref-help]
["Customize org-ref" (customize-group 'org-ref)])
"Show/Hide")
(easy-menu-change '("Org") "--" nil "Show/Hide"))
(add-hook 'org-mode-hook 'org-ref-org-menu)
;;* The end
(provide 'org-ref-core)
;;; org-ref-core.el ends here
;; Local Variables:
;; byte-compile-warnings: (not docstrings docstrings-wide)
;; End: