org-footnote.el 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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.16trans
  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-back-to-heading "org" (&optional invisible-ok))
  40. (declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
  41. (defconst org-footnote-re
  42. (concat "." ; to make sure it is not at the beginning of a line
  43. "\\["
  44. "\\(?:"
  45. "\\([0-9]+\\)"
  46. "\\|"
  47. "\\(fn:\\(\\sw+?\\)?\\)\\(?::\\([^\]]*?\\)\\)?"
  48. "\\)"
  49. "\\]")
  50. "Regular expression for matching footnotes.")
  51. (defconst org-footnote-definition-re "^\\(\\[\\([0-9]+\\|fn:\\sw+\\)\\]\\)"
  52. "Regular expression matching the definition of a footnote.")
  53. (defcustom org-footnote-section "Footnotes"
  54. "Outline heading containing footnote definitions before export.
  55. During editing, Org-mode places footnote definitions under this
  56. special outline heading. You can have several such sections in a buffer,
  57. Org-mode will always use the nearest. So, for example, each top-level
  58. heading could have its own level-2 child for footnotes.
  59. This is the heading where Org places the definition automatically. However,
  60. by hand you may place definitions *anywhere*.
  61. During export, all subtrees starting with this heading will be removed."
  62. :group 'org-footnotes
  63. :type 'string)
  64. (defcustom org-footnote-tag-for-non-org-mode-files "Footnotes:"
  65. "Tag marking the beginning of footnote section.
  66. The Org-mode footnote engine can be used in arbitrary text files as well
  67. as in Org-mode. Outside Org-mode, new footnotes are always placed at
  68. the end of the file. When you normalize the notes, any line containing
  69. only this tag will be removed, a new one will be inserted at the end
  70. of the file, followed by the collected and normalized footnotes."
  71. :group 'org-footnotes
  72. :type 'string)
  73. (defcustom org-footnote-define-inline nil
  74. "Non-nil means, define footnotes inline, at reference location.
  75. When nil, footnotes will be defined in a special section near
  76. the end of the document. When t, the [fn:label:definition] notation
  77. will be used to define the footnote at the reference position."
  78. :group 'org-footnote
  79. :type 'boolean)
  80. (defun org-footnote-at-reference-p ()
  81. "Is the cursor at a footnote reference?
  82. If yes, return the beginning position, the label, and the definition, if local."
  83. (when (org-in-regexp org-footnote-re 15)
  84. (list (match-beginning 0)
  85. (or (match-string 1)
  86. (if (equal (match-string 2) "fn:") nil (match-string 2)))
  87. (match-string 4))))
  88. (defun org-footnote-at-definition-p ()
  89. "Is the cursor at a footnote definition.
  90. This matches only pure definitions like [1] or [fn:name] at the beginning
  91. of a line. It does not a references like [fn:name:definition], where the
  92. footnote text is included and defined locally.
  93. The return value will be nil if not at a foornote definition, and a list
  94. with start and label of the footnote if there is a definition at point."
  95. (save-excursion
  96. (end-of-line 1)
  97. (let ((lim (save-excursion (re-search-backward "^\\*+ \\|^[ \t]*$" nil t))))
  98. (when (re-search-backward
  99. org-footnote-definition-re
  100. (save-excursion (re-search-backward "^\\*+ \\|^[ \t]*$" nil t))
  101. t)
  102. (list (match-beginning 0) (match-string 2))))))
  103. (defun org-footnote-goto-definition (label)
  104. "Find the definition of the footnote with label LABEL."
  105. (interactive "sLabel: ")
  106. (org-mark-ring-push)
  107. (setq label (org-footnote-normalize-label label))
  108. (let ((re (format "^\\[%s\\]\\|.\\[%s:" label label))
  109. pos)
  110. (save-excursion
  111. (setq pos (or (re-search-forward re nil t)
  112. (and (goto-char (point-min))
  113. (re-search-forward re nil t))
  114. (and (progn (widen) t)
  115. (goto-char (point-min))
  116. (re-search-forward re nil t)))))
  117. (if (not pos)
  118. (error "Cannot find definition of footnote %s" label)
  119. (goto-char pos)
  120. (message "Edit definition and go back with `C-c &' or, if unique, with `C-c C-c'."))))
  121. (defun org-footnote-goto-next-reference (label)
  122. "Find the definition of the footnote with label LABEL."
  123. (interactive "sLabel: ")
  124. (org-mark-ring-push)
  125. (setq label (org-footnote-normalize-label label))
  126. (let ((re (format ".\\[%s[]:]" label))
  127. (p0 (point)) pos)
  128. (save-excursion
  129. (setq pos (or (re-search-forward re nil t)
  130. (and (goto-char (point-min))
  131. (re-search-forward re nil t))
  132. (and (progn (widen) t)
  133. (goto-char p0)
  134. (re-search-forward re nil t))
  135. (and (goto-char (point-min))
  136. (re-search-forward re nil t)))))
  137. (if pos (goto-char pos)
  138. (error "Cannot find reference of footnote %s" label))))
  139. (defun org-footnote-normalize-label (label)
  140. (if (numberp label) (setq label (number-to-string label)))
  141. (if (not (string-match "^[0-9]+$\\|^$\\|^fn:" label))
  142. (setq label (concat "fn:" label)))
  143. label)
  144. (defun org-footnote-all-labels ()
  145. "Return list with all defined foot labels used in the buffer."
  146. (let (rtn l)
  147. (save-excursion
  148. (save-restriction
  149. (widen)
  150. (goto-char (point-min))
  151. (while (re-search-forward org-footnote-definition-re nil t)
  152. (setq l (org-match-string-no-properties 2))
  153. (and l (add-to-list 'rtn l)))
  154. (goto-char (point-min))
  155. (while (re-search-forward org-footnote-re nil t)
  156. (setq l (or (org-match-string-no-properties 1)
  157. (org-match-string-no-properties 2)))
  158. (and l (not (equal l "fn:")) (add-to-list 'rtn l)))))
  159. rtn))
  160. (defun org-footnote-new ()
  161. "Insert a new footnote.
  162. This command prompts for a label. If this is a label referencing an
  163. existing label, only insert the label. If the footnote label is empty
  164. or new, let the user edit the definition of the footnote."
  165. (interactive)
  166. (let* ((labels (org-footnote-all-labels))
  167. (label (completing-read
  168. "Label (leave empty for anonymous): "
  169. (mapcar 'list labels))))
  170. (setq label (org-footnote-normalize-label label))
  171. (cond
  172. ((equal label "")
  173. (insert "[fn:: ]")
  174. (backward-char 1))
  175. ((member label labels)
  176. (insert "[" label "]")
  177. (message "New reference to existing note"))
  178. (org-footnote-define-inline
  179. (insert "[" label ": ]")
  180. (backward-char 1))
  181. (t
  182. (insert "[" label "]")
  183. (org-footnote-create-definition label)))))
  184. (defun org-footnote-create-definition (label)
  185. "Start the definition of a footnote with label LABEL."
  186. (interactive "sLabel: ")
  187. (setq label (org-footnote-normalize-label label))
  188. (let (re p)
  189. (cond
  190. ((org-mode-p)
  191. (setq re (concat "^\\*+[ \t]+" org-footnote-section "[ \t]*$"))
  192. (unless (or (re-search-forward re nil t)
  193. (and (progn (widen) t)
  194. (re-search-forward re nil t)))
  195. (goto-char (point-max))
  196. (insert "\n\n* " org-footnote-section))
  197. (outline-next-heading)
  198. (setq p (point))
  199. (skip-chars-backward " \t\n\r")
  200. (delete-region (point) p))
  201. (t
  202. (setq re (concat "^" org-footnote-tag-for-non-org-mode-files "[ \t]*$"))
  203. (unless (re-search-forward re nil t)
  204. (goto-char (point-max))
  205. (skip-chars-backward " \t\r\n")
  206. (insert "\n\n")
  207. (delete-region (point) (point-max))
  208. (insert org-footnote-tag-for-non-org-mode-files "\n"))
  209. (goto-char (point-max))
  210. (skip-chars-backward " \t\r\n")
  211. (delete-region (point) (point-max))))
  212. (insert "\n\n\n")
  213. (backward-char 1)
  214. (insert "[" label "] ")
  215. (message "Edit definition and go back with `C-c &' or, if unique, with `C-c C-c'.")))
  216. ;;;###autoload
  217. (defun org-footnote-action (&optional special)
  218. "Do the right thing for footnotes.
  219. When at a foornote reference, jump to the definition. When at a definition,
  220. jump to the refernces. When neither at definition or reference,
  221. create a new footnote, interactively.
  222. With prefix arg SPECIAL, offer additional commands in a menu."
  223. (interactive "P")
  224. (let (tmp c)
  225. (cond
  226. (special
  227. (message "Footnotes: [s]ort | convert to [n]umeric | [d]elete")
  228. (setq c (read-char-exclusive))
  229. (cond
  230. ((equal c ?s)
  231. (org-footnote-normalize 'sort))
  232. ((equal c ?n)
  233. (org-footnote-normalize))
  234. ((equal c ?d)
  235. (org-footnote-delete))
  236. (t (error "No such footnote command %c" c))))
  237. ((setq tmp (org-footnote-at-reference-p))
  238. (if (nth 1 tmp)
  239. (org-footnote-goto-definition (nth 1 tmp))
  240. (goto-char (match-beginning 4))))
  241. ((setq tmp (org-footnote-at-definition-p))
  242. (org-footnote-goto-next-reference (nth 1 tmp)))
  243. (t (org-footnote-new)))))
  244. ;;;###autoload
  245. (defun org-footnote-normalize (&optional sort-only for-preprocessor)
  246. "Collect the footnotes in various formats and normalize them.
  247. This find the different sorts of footnotes allowed in Org, and
  248. normalizes them to the usual [N] format that is understood by the
  249. Org-mode exporters.
  250. When SORT-ONLY is set, only sort the footnote definitions into the
  251. referenced sequence."
  252. ;; This is based on Paul's function, but rewritten.
  253. (let ((count 0) ref def ref-table liste beg beg1 ref def marker a before
  254. ins-point)
  255. (save-excursion
  256. ;; Now find footnote references,
  257. (goto-char (point-min))
  258. (while (re-search-forward org-footnote-re nil t)
  259. (org-if-unprotected
  260. (setq def (match-string 4)
  261. ref (or (match-string 1) (match-string 2))
  262. before (char-to-string (char-after (match-beginning 0))))
  263. (if (and ref (setq a (assoc ref ref-table)))
  264. (setq marker (nth 1 a))
  265. (setq marker (number-to-string (incf count))))
  266. (save-match-data
  267. (if def
  268. (setq def (org-trim def))
  269. (save-excursion
  270. (if (not (re-search-forward (concat "^\\[" ref "\\]") nil t))
  271. (setq def
  272. (format "FOOTNOTE DEFINITION NOT FOUND: %s" ref))
  273. (setq beg (match-beginning 0))
  274. (setq beg1 (match-end 0))
  275. (re-search-forward "^[ \t]*$\\|^\\[\\([0-9]+\\|fn:\\sw+\\)\\]"
  276. nil 'move)
  277. (setq def (buffer-substring beg1 (match-beginning 0)))
  278. (delete-region beg (match-beginning 0))))))
  279. (unless sort-only (replace-match (concat before "[" marker "]")))
  280. (if (not a) (push (list ref marker def) ref-table))))
  281. ;; First find and remove the footnote section
  282. (goto-char (point-min))
  283. (cond
  284. ((org-mode-p)
  285. (if (re-search-forward
  286. (concat "^\\*[ \t]+" (regexp-quote org-footnote-section)
  287. "[ \t]*$")
  288. nil t)
  289. (if for-preprocessor
  290. (replace-match "")
  291. (org-back-to-heading t)
  292. (forward-line 1)
  293. (setq ins-point (point))
  294. (delete-region (point) (org-end-of-subtree t)))
  295. (goto-char (point-max))
  296. (unless for-preprocessor
  297. (insert "* " org-footnote-section "\n")
  298. (setq ins-point (point)))))
  299. (t
  300. (if (re-search-forward
  301. (concat "^"
  302. (regexp-quote org-footnote-tag-for-non-org-mode-files)
  303. "[ \t]*$")
  304. nil t)
  305. (replace-match ""))
  306. (goto-char (point-max))
  307. (skip-chars-backward " \t\n\r")
  308. (delete-region (point) (point-max))
  309. (insert "\n\n" org-footnote-tag-for-non-org-mode-files "\n")
  310. (setq ins-point (point))))
  311. ;; Insert the footnotes again
  312. (goto-char (or ins-point (point-max)))
  313. (setq ref-table (reverse ref-table))
  314. (when sort-only
  315. (setq ref-table
  316. (delq nil (mapcar
  317. (lambda (x) (and (car x)
  318. (not (equal (car x) "fn:"))
  319. x))
  320. ref-table))))
  321. (setq def
  322. (mapconcat
  323. (lambda (x)
  324. (format "[%s] %s" (nth (if sort-only 0 1) x)
  325. (org-trim (nth 2 x))))
  326. ref-table "\n\n"))
  327. (if ref-table (insert "\n" def "\n\n")))))
  328. (defun org-footnote-delete (&optional label)
  329. "Delete the footnote at point.
  330. This will remove the definition (even multiple definitions if they exist)
  331. and all references of a footnote label."
  332. (catch 'done
  333. (let (x label l beg def-re (nref 0) (ndef 0))
  334. (unless label
  335. (when (setq x (org-footnote-at-reference-p))
  336. (setq label (nth 1 x))
  337. (when (or (not label) (equal "fn:" label))
  338. (delete-region (1+ (match-beginning 0)) (match-end 0))
  339. (message "Anonymous footnote removed")
  340. (throw 'done t)))
  341. (when (and (not label) (setq x (org-footnote-at-definition-p)))
  342. (setq label (nth 1 x)))
  343. (unless label (error "Don't know which footnote to remove")))
  344. (save-excursion
  345. (save-restriction
  346. (goto-char (point-min))
  347. (while (re-search-forward org-footnote-re nil t)
  348. (setq l (or (match-string 1) (match-string 2)))
  349. (when (equal l label)
  350. (delete-region (1+ (match-beginning 0)) (match-end 0))
  351. (incf nref)))
  352. (goto-char (point-min))
  353. (setq def-re (concat "^\\[" (regexp-quote label) "\\]"))
  354. (while (re-search-forward def-re nil t)
  355. (setq beg (match-beginning 0))
  356. (if (re-search-forward "^\\[\\|^[ \t]*$\\|^\\*+ " nil t)
  357. (goto-char (match-beginning 0))
  358. (goto-char (point-max)))
  359. (delete-region beg (point))
  360. (incf ndef))))
  361. (message "%d definition(s) of and %d reference(s) of footnote %s removed"
  362. ndef nref label))))
  363. (provide 'org-footnote)
  364. ;; arch-tag: 1b5954df-fb5d-4da5-8709-78d944dbfc37
  365. ;;; org-footnote.el ends here