org-footnote.el 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. ;;; org-footnote.el --- Footnote support in Org and elsewhere
  2. ;;
  3. ;; Copyright (C) 2009 Free Software Foundation, Inc.
  4. ;;
  5. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  6. ;; Keywords: outlines, hypermedia, calendar, wp
  7. ;; Homepage: http://orgmode.org
  8. ;; Version: 6.17a
  9. ;;
  10. ;; This file is part of GNU Emacs.
  11. ;;
  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.
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. ;; GNU General Public License for more details.
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  22. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  23. ;;
  24. ;;; Commentary:
  25. ;; This file contains the code dealing with footnotes in Org-mode.
  26. ;; The code can also be used in arbitrary text modes to provide
  27. ;; footnotes. Compared to Steven L Baur's footnote.el it provides
  28. ;; better support for resuming editing. It is less configurable than
  29. ;; Steve's code, though.
  30. ;;; Code:
  31. (eval-when-compile
  32. (require 'cl))
  33. (require 'org-macs)
  34. (require 'org-compat)
  35. (declare-function org-in-regexp "org" (re &optional nlines visually))
  36. (declare-function org-mark-ring-push "org" (&optional pos buffer))
  37. (declare-function outline-next-heading "outline")
  38. (declare-function org-trim "org" (s))
  39. (declare-function org-show-context "org" (&optional key))
  40. (declare-function org-back-to-heading "org" (&optional invisible-ok))
  41. (declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
  42. (defconst org-footnote-re
  43. (concat "." ; to make sure it is not at the beginning of a line
  44. "\\["
  45. "\\(?:"
  46. "\\([0-9]+\\)"
  47. "\\|"
  48. (org-re "\\(fn:\\([-_[:word:]]+?\\)?\\)\\(?::\\([^\]]*?\\)\\)?")
  49. "\\)"
  50. "\\]")
  51. "Regular expression for matching footnotes.")
  52. (defconst org-footnote-definition-re
  53. (org-re "^\\(\\[\\([0-9]+\\|fn:[-_[:word:]]+\\)\\]\\)")
  54. "Regular expression matching the definition of a footnote.")
  55. (defcustom org-footnote-section "Footnotes"
  56. "Outline heading containing footnote definitions before export.
  57. This can be nil, to place footnotes locally at the end of the current
  58. outline node. If can also be the name of a special outline heading
  59. under which footnotes should be put.
  60. This variable defines the place where Org puts the definition
  61. automatically, i.e. when creating the footnote, and when sorting the notes.
  62. However, by hand you may place definitions *anywhere*.
  63. If this is a string, during export, all subtrees starting with this
  64. heading will be removed after extracting footnote definitions."
  65. :group 'org-footnotes
  66. :type '(choice
  67. (string :tag "Collect fotnotes under heading")
  68. (const :tag "Define footnotes locally" nil)))
  69. (defcustom org-footnote-tag-for-non-org-mode-files "Footnotes:"
  70. "Tag marking the beginning of footnote section.
  71. The Org-mode footnote engine can be used in arbitrary text files as well
  72. as in Org-mode. Outside Org-mode, new footnotes are always placed at
  73. the end of the file. When you normalize the notes, any line containing
  74. only this tag will be removed, a new one will be inserted at the end
  75. of the file, followed by the collected and normalized footnotes."
  76. :group 'org-footnotes
  77. :type 'string)
  78. (defcustom org-footnote-define-inline nil
  79. "Non-nil means, define footnotes inline, at reference location.
  80. When nil, footnotes will be defined in a special section near
  81. the end of the document. When t, the [fn:label:definition] notation
  82. will be used to define the footnote at the reference position."
  83. :group 'org-footnote
  84. :type 'boolean)
  85. (defcustom org-footnote-auto-label t
  86. "Non-nil means, define automatically new labels for footnotes.
  87. Possible values are:
  88. nil prompt the user for each label
  89. t create unique labels of the form [fn:1], [fn:2], ...
  90. confirm like t, but let the user edit the created value. In particular,
  91. the label can be removed from the minibuffer, to create
  92. an anonymous footnote.
  93. plain Automatically create plain number labels like [1]"
  94. :group 'org-footnote
  95. :type '(choice
  96. (const :tag "Frompt for label" nil)
  97. (const :tag "Create automatic [fn:N]" t)
  98. (const :tag "Offer automatic [fn:N] for editing" confirm)
  99. (const :tag "Create automatic [N]" plain)))
  100. (defcustom org-footnote-fill-after-inline-note-extraction nil
  101. "Non-nil means, fill paragraphs after extracting footnotes.
  102. When extracting inline footnotes, the lengths of lines can change a lot.
  103. When this option is set, paragraphs from which an inline footnote has been
  104. extracted will be filled again."
  105. :group 'org-footnote
  106. :type 'boolean)
  107. (defun org-footnote-at-reference-p ()
  108. "Is the cursor at a footnote reference?
  109. If yes, return the beginning position, the label, and the definition, if local."
  110. (when (org-in-regexp org-footnote-re 15)
  111. (list (match-beginning 0)
  112. (or (match-string 1)
  113. (if (equal (match-string 2) "fn:") nil (match-string 2)))
  114. (match-string 4))))
  115. (defun org-footnote-at-definition-p ()
  116. "Is the cursor at a footnote definition.
  117. This matches only pure definitions like [1] or [fn:name] at the beginning
  118. of a line. It does not a references like [fn:name:definition], where the
  119. footnote text is included and defined locally.
  120. The return value will be nil if not at a foornote definition, and a list
  121. with start and label of the footnote if there is a definition at point."
  122. (save-excursion
  123. (end-of-line 1)
  124. (let ((lim (save-excursion (re-search-backward "^\\*+ \\|^[ \t]*$" nil t))))
  125. (when (re-search-backward org-footnote-definition-re lim t)
  126. (list (match-beginning 0) (match-string 2))))))
  127. (defun org-footnote-goto-definition (label)
  128. "Find the definition of the footnote with label LABEL."
  129. (interactive "sLabel: ")
  130. (org-mark-ring-push)
  131. (setq label (org-footnote-normalize-label label))
  132. (let ((re (format "^\\[%s\\]\\|.\\[%s:" label label))
  133. pos)
  134. (save-excursion
  135. (setq pos (or (re-search-forward re nil t)
  136. (and (goto-char (point-min))
  137. (re-search-forward re nil t))
  138. (and (progn (widen) t)
  139. (goto-char (point-min))
  140. (re-search-forward re nil t)))))
  141. (if (not pos)
  142. (error "Cannot find definition of footnote %s" label)
  143. (goto-char pos)
  144. (org-show-context 'link-search)
  145. (message "Edit definition and go back with `C-c &' or, if unique, with `C-c C-c'."))))
  146. (defun org-footnote-goto-next-reference (label)
  147. "Find the definition of the footnote with label LABEL."
  148. (interactive "sLabel: ")
  149. (org-mark-ring-push)
  150. (setq label (org-footnote-normalize-label label))
  151. (let ((re (format ".\\[%s[]:]" label))
  152. (p0 (point)) pos)
  153. (save-excursion
  154. (setq pos (or (re-search-forward re nil t)
  155. (and (goto-char (point-min))
  156. (re-search-forward re nil t))
  157. (and (progn (widen) t)
  158. (goto-char p0)
  159. (re-search-forward re nil t))
  160. (and (goto-char (point-min))
  161. (re-search-forward re nil t)))))
  162. (if pos
  163. (progn
  164. (goto-char pos)
  165. (org-show-context 'link-search))
  166. (error "Cannot find reference of footnote %s" label))))
  167. (defun org-footnote-normalize-label (label)
  168. (if (numberp label) (setq label (number-to-string label)))
  169. (if (not (string-match "^[0-9]+$\\|^$\\|^fn:" label))
  170. (setq label (concat "fn:" label)))
  171. label)
  172. (defun org-footnote-all-labels ()
  173. "Return list with all defined foot labels used in the buffer."
  174. (let (rtn l)
  175. (save-excursion
  176. (save-restriction
  177. (widen)
  178. (goto-char (point-min))
  179. (while (re-search-forward org-footnote-definition-re nil t)
  180. (setq l (org-match-string-no-properties 2))
  181. (and l (add-to-list 'rtn l)))
  182. (goto-char (point-min))
  183. (while (re-search-forward org-footnote-re nil t)
  184. (setq l (or (org-match-string-no-properties 1)
  185. (org-match-string-no-properties 2)))
  186. (and l (not (equal l "fn:")) (add-to-list 'rtn l)))))
  187. rtn))
  188. (defun org-footnote-unique-label (&optional current)
  189. "Return a new unique footnote label.
  190. The returns the firsts fn:N labels that is currently not used."
  191. (unless current (setq current (org-footnote-all-labels)))
  192. (let ((fmt (if (eq org-footnote-auto-label 'plain) "%d" "fn:%d"))
  193. (cnt 1))
  194. (while (member (format fmt cnt) current)
  195. (incf cnt))
  196. (format fmt cnt)))
  197. (defvar org-footnote-label-history nil
  198. "History of footnote labels entered in current buffer.")
  199. (make-variable-buffer-local 'org-footnote-label-history)
  200. (defun org-footnote-new ()
  201. "Insert a new footnote.
  202. This command prompts for a label. If this is a label referencing an
  203. existing label, only insert the label. If the footnote label is empty
  204. or new, let the user edit the definition of the footnote."
  205. (interactive)
  206. (let* ((labels (org-footnote-all-labels))
  207. (propose (org-footnote-unique-label labels))
  208. (label
  209. (if (member org-footnote-auto-label '(t plain))
  210. propose
  211. (completing-read
  212. "Label (leave empty for anonymous): "
  213. (mapcar 'list labels) nil nil
  214. (if (eq org-footnote-auto-label 'confirm) propose nil)
  215. 'org-footnote-label-history))))
  216. (setq label (org-footnote-normalize-label label))
  217. (cond
  218. ((equal label "")
  219. (insert "[fn:: ]")
  220. (backward-char 1))
  221. ((member label labels)
  222. (insert "[" label "]")
  223. (message "New reference to existing note"))
  224. (org-footnote-define-inline
  225. (insert "[" label ": ]")
  226. (backward-char 1))
  227. (t
  228. (insert "[" label "]")
  229. (org-footnote-create-definition label)))))
  230. (defun org-footnote-create-definition (label)
  231. "Start the definition of a footnote with label LABEL."
  232. (interactive "sLabel: ")
  233. (setq label (org-footnote-normalize-label label))
  234. (let (re p)
  235. (cond
  236. ((org-mode-p)
  237. (if (not org-footnote-section)
  238. ;; No section, put footnote into the current outline node
  239. nil
  240. ;; Try to find or make the special node
  241. (setq re (concat "^\\*+[ \t]+" org-footnote-section "[ \t]*$"))
  242. (unless (or (re-search-forward re nil t)
  243. (and (progn (widen) t)
  244. (re-search-forward re nil t)))
  245. (goto-char (point-max))
  246. (insert "\n\n* " org-footnote-section "\n")))
  247. ;; Now go to the end of this entry and insert there.
  248. (org-footnote-goto-local-insertion-point))
  249. (t
  250. (setq re (concat "^" org-footnote-tag-for-non-org-mode-files "[ \t]*$"))
  251. (unless (re-search-forward re nil t)
  252. (goto-char (point-max))
  253. (skip-chars-backward " \t\r\n")
  254. (insert "\n\n")
  255. (delete-region (point) (point-max))
  256. (insert org-footnote-tag-for-non-org-mode-files "\n"))
  257. (goto-char (point-max))
  258. (skip-chars-backward " \t\r\n")))
  259. (insert "\n\n")
  260. (insert "[" label "] ")
  261. (message "Edit definition and go back with `C-c &' or, if unique, with `C-c C-c'.")))
  262. ;;;###autoload
  263. (defun org-footnote-action (&optional special)
  264. "Do the right thing for footnotes.
  265. When at a foornote reference, jump to the definition. When at a definition,
  266. jump to the refernces. When neither at definition or reference,
  267. create a new footnote, interactively.
  268. With prefix arg SPECIAL, offer additional commands in a menu."
  269. (interactive "P")
  270. (let (tmp c)
  271. (cond
  272. (special
  273. (message "Footnotes: [s]ort | convert to [n]umeric | [d]elete")
  274. (setq c (read-char-exclusive))
  275. (cond
  276. ((equal c ?s)
  277. (org-footnote-normalize 'sort))
  278. ((equal c ?n)
  279. (org-footnote-normalize))
  280. ((equal c ?d)
  281. (org-footnote-delete))
  282. (t (error "No such footnote command %c" c))))
  283. ((setq tmp (org-footnote-at-reference-p))
  284. (if (nth 1 tmp)
  285. (org-footnote-goto-definition (nth 1 tmp))
  286. (goto-char (match-beginning 4))))
  287. ((setq tmp (org-footnote-at-definition-p))
  288. (org-footnote-goto-next-reference (nth 1 tmp)))
  289. (t (org-footnote-new)))))
  290. ;;;###autoload
  291. (defun org-footnote-normalize (&optional sort-only for-preprocessor)
  292. "Collect the footnotes in various formats and normalize them.
  293. This find the different sorts of footnotes allowed in Org, and
  294. normalizes them to the usual [N] format that is understood by the
  295. Org-mode exporters.
  296. When SORT-ONLY is set, only sort the footnote definitions into the
  297. referenced sequence."
  298. ;; This is based on Paul's function, but rewritten.
  299. (let ((count 0) ref def idef ref-table liste beg beg1 marker a before
  300. ins-point)
  301. (save-excursion
  302. ;; Now find footnote references, and extract the definitions
  303. (goto-char (point-min))
  304. (while (re-search-forward org-footnote-re nil t)
  305. (org-if-unprotected
  306. (setq def (match-string 4)
  307. idef def
  308. ref (or (match-string 1) (match-string 2))
  309. before (char-to-string (char-after (match-beginning 0))))
  310. (if (equal ref "fn:") (setq ref nil))
  311. (if (and ref (setq a (assoc ref ref-table)))
  312. (progn
  313. (setq marker (nth 1 a))
  314. (unless (nth 2 a) (setf (caddr a) def)))
  315. (setq marker (number-to-string (incf count))))
  316. (save-match-data
  317. (if def
  318. (setq def (org-trim def))
  319. (save-excursion
  320. (goto-char (point-min))
  321. (if (not (re-search-forward (concat "^\\[" (regexp-quote ref)
  322. "\\]") nil t))
  323. (setq def nil)
  324. (setq beg (match-beginning 0))
  325. (setq beg1 (match-end 0))
  326. (re-search-forward
  327. (org-re "^[ \t]*$\\|^\\*+ \\|^\\[\\([0-9]+\\|fn:[-_[:word:]]+\\)\\]")
  328. nil 'move)
  329. (setq def (buffer-substring beg1 (match-beginning 0)))
  330. (goto-char beg)
  331. (skip-chars-backward " \t\n\t")
  332. (delete-region (1+ (point)) (match-beginning 0))))))
  333. (unless sort-only
  334. (replace-match (concat before "[" marker "]"))
  335. (and idef
  336. org-footnote-fill-after-inline-note-extraction
  337. (fill-paragraph)))
  338. (if (not a) (push (list ref marker def) ref-table))))
  339. ;; First find and remove the footnote section
  340. (goto-char (point-min))
  341. (cond
  342. ((org-mode-p)
  343. (if (and org-footnote-section
  344. (re-search-forward
  345. (concat "^\\*[ \t]+" (regexp-quote org-footnote-section)
  346. "[ \t]*$")
  347. nil t))
  348. (if (or for-preprocessor (not org-footnote-section))
  349. (replace-match "")
  350. (org-back-to-heading t)
  351. (forward-line 1)
  352. (setq ins-point (point))
  353. (delete-region (point) (org-end-of-subtree t)))
  354. (goto-char (point-max))
  355. (unless for-preprocessor
  356. (when org-footnote-section
  357. (or (bolp) (insert "\n"))
  358. (insert "* " org-footnote-section "\n")
  359. (setq ins-point (point))))))
  360. (t
  361. (if (re-search-forward
  362. (concat "^"
  363. (regexp-quote org-footnote-tag-for-non-org-mode-files)
  364. "[ \t]*$")
  365. nil t)
  366. (replace-match ""))
  367. (goto-char (point-max))
  368. (skip-chars-backward " \t\n\r")
  369. (delete-region (point) (point-max))
  370. (insert "\n\n" org-footnote-tag-for-non-org-mode-files "\n")
  371. (setq ins-point (point))))
  372. ;; Insert the footnotes again
  373. (goto-char (or ins-point (point-max)))
  374. (setq ref-table (reverse ref-table))
  375. (when sort-only
  376. ;; remove anonymous fotnotes from the list
  377. (setq ref-table
  378. (delq nil (mapcar
  379. (lambda (x) (and (car x)
  380. (not (equal (car x) "fn:"))
  381. x))
  382. ref-table))))
  383. ;; Make sure each footnote has a description, or an error message.
  384. (setq ref-table
  385. (mapcar
  386. (lambda (x)
  387. (if (not (nth 2 x))
  388. (setcar (cddr x)
  389. (format "FOOTNOTE DEFINITION NOT FOUND: %s" (car x)))
  390. (setcar (cddr x) (org-trim (nth 2 x))))
  391. x)
  392. ref-table))
  393. (if (or (not (org-mode-p)) ; not an Org file
  394. org-footnote-section ; we do not use a footnote section
  395. (not sort-only) ; this is normalization
  396. for-preprocessor) ; the is the preprocessor
  397. ;; Insert the footnotes together in one place
  398. (progn
  399. (setq def
  400. (mapconcat
  401. (lambda (x)
  402. (format "[%s] %s" (nth (if sort-only 0 1) x)
  403. (org-trim (nth 2 x))))
  404. ref-table "\n\n"))
  405. (if ref-table (insert "\n" def "\n\n")))
  406. ;; Insert each footnote near the first reference
  407. ;; Happens only in Org files with no special footnote section,
  408. ;; and only when doing sorting
  409. (mapc 'org-insert-footnote-reference-near-definition
  410. ref-table)))))
  411. (defun org-insert-footnote-reference-near-definition (entry)
  412. "Find first reference of footnote ENTRY and insert the definition there.
  413. ENTRY is (fn-label num-mark definition)."
  414. (when (car entry)
  415. (let ((pos (point)))
  416. (goto-char (point-min))
  417. (when (re-search-forward (format ".\\[%s[]:]" (regexp-quote (car entry)))
  418. nil t)
  419. (org-footnote-goto-local-insertion-point)
  420. (insert (format "\n\n[%s] %s" (car entry) (nth 2 entry)))))))
  421. (defun org-footnote-goto-local-insertion-point ()
  422. "Find insertion point for footnote, just before next outline heading."
  423. (outline-next-heading)
  424. (or (bolp) (newline))
  425. (beginning-of-line 0)
  426. (while (and (not (bobp)) (= (char-after) ?#))
  427. (beginning-of-line 0))
  428. (if (looking-at "#\\+TBLFM:") (beginning-of-line 2))
  429. (end-of-line 1)
  430. (skip-chars-backward "\n\r\t "))
  431. (defun org-footnote-delete (&optional label)
  432. "Delete the footnote at point.
  433. This will remove the definition (even multiple definitions if they exist)
  434. and all references of a footnote label."
  435. (catch 'done
  436. (let (x label l beg def-re (nref 0) (ndef 0))
  437. (unless label
  438. (when (setq x (org-footnote-at-reference-p))
  439. (setq label (nth 1 x))
  440. (when (or (not label) (equal "fn:" label))
  441. (delete-region (1+ (match-beginning 0)) (match-end 0))
  442. (message "Anonymous footnote removed")
  443. (throw 'done t)))
  444. (when (and (not label) (setq x (org-footnote-at-definition-p)))
  445. (setq label (nth 1 x)))
  446. (unless label (error "Don't know which footnote to remove")))
  447. (save-excursion
  448. (save-restriction
  449. (goto-char (point-min))
  450. (while (re-search-forward org-footnote-re nil t)
  451. (setq l (or (match-string 1) (match-string 2)))
  452. (when (equal l label)
  453. (delete-region (1+ (match-beginning 0)) (match-end 0))
  454. (incf nref)))
  455. (goto-char (point-min))
  456. (setq def-re (concat "^\\[" (regexp-quote label) "\\]"))
  457. (while (re-search-forward def-re nil t)
  458. (setq beg (match-beginning 0))
  459. (if (re-search-forward "^\\[\\|^[ \t]*$\\|^\\*+ " nil t)
  460. (goto-char (match-beginning 0))
  461. (goto-char (point-max)))
  462. (delete-region beg (point))
  463. (incf ndef))))
  464. (message "%d definition(s) of and %d reference(s) of footnote %s removed"
  465. ndef nref label))))
  466. (provide 'org-footnote)
  467. ;; arch-tag: 1b5954df-fb5d-4da5-8709-78d944dbfc37
  468. ;;; org-footnote.el ends here