2015-10-26 00:56:00 +00:00
|
|
|
;;; org-footnote.el --- Footnote support in Org -*- lexical-binding: t; -*-
|
2008-12-30 22:40:14 +00:00
|
|
|
;;
|
2015-02-16 00:40:07 +00:00
|
|
|
;; Copyright (C) 2009-2015 Free Software Foundation, Inc.
|
2008-12-30 22:40:14 +00:00
|
|
|
;;
|
|
|
|
;; Author: Carsten Dominik <carsten at orgmode dot org>
|
|
|
|
;; Keywords: outlines, hypermedia, calendar, wp
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
;;
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;; GNU Emacs 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 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This file contains the code dealing with footnotes in Org-mode.
|
|
|
|
;; The code can also be used in arbitrary text modes to provide
|
|
|
|
;; footnotes. Compared to Steven L Baur's footnote.el it provides
|
|
|
|
;; better support for resuming editing. It is less configurable than
|
|
|
|
;; Steve's code, though.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(eval-when-compile
|
|
|
|
(require 'cl))
|
|
|
|
(require 'org-macs)
|
|
|
|
(require 'org-compat)
|
|
|
|
|
2011-08-14 08:52:14 +00:00
|
|
|
(declare-function message-point-in-header-p "message" ())
|
2015-05-30 12:28:35 +00:00
|
|
|
(declare-function org-at-comment-p "org" ())
|
|
|
|
(declare-function org-at-heading-p "org" (&optional ignored))
|
2011-08-16 18:02:30 +00:00
|
|
|
(declare-function org-back-over-empty-lines "org" ())
|
|
|
|
(declare-function org-back-to-heading "org" (&optional invisible-ok))
|
2011-07-16 07:19:50 +00:00
|
|
|
(declare-function org-combine-plists "org" (&rest plists))
|
2015-05-30 12:28:35 +00:00
|
|
|
(declare-function org-edit-footnote-reference "org-src" ())
|
2014-06-01 12:19:25 +00:00
|
|
|
(declare-function org-element-context "org-element" (&optional element))
|
|
|
|
(declare-function org-element-property "org-element" (property element))
|
|
|
|
(declare-function org-element-type "org-element" (element))
|
2011-08-16 18:02:30 +00:00
|
|
|
(declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
|
|
|
|
(declare-function org-fill-paragraph "org" (&optional justify))
|
2011-08-14 08:52:14 +00:00
|
|
|
(declare-function org-icompleting-read "org" (&rest args))
|
2011-08-16 18:02:30 +00:00
|
|
|
(declare-function org-id-uuid "org-id" ())
|
|
|
|
(declare-function org-in-block-p "org" (names))
|
2008-12-30 22:40:14 +00:00
|
|
|
(declare-function org-in-regexp "org" (re &optional nlines visually))
|
2009-10-29 15:34:33 +00:00
|
|
|
(declare-function org-in-verbatim-emphasis "org" ())
|
2011-09-04 14:45:39 +00:00
|
|
|
(declare-function org-inside-LaTeX-fragment-p "org" ())
|
2009-12-11 07:49:44 +00:00
|
|
|
(declare-function org-inside-latex-macro-p "org" ())
|
2011-08-16 18:02:30 +00:00
|
|
|
(declare-function org-mark-ring-push "org" (&optional pos buffer))
|
|
|
|
(declare-function org-show-context "org" (&optional key))
|
2012-03-19 20:38:12 +00:00
|
|
|
(declare-function org-skip-whitespace "org" ())
|
2012-03-20 12:04:55 +00:00
|
|
|
(declare-function org-skip-whitespace "org" ())
|
2015-05-30 12:28:35 +00:00
|
|
|
(declare-function org-trim "org" (s))
|
|
|
|
(declare-function outline-next-heading "outline")
|
2011-07-18 17:25:10 +00:00
|
|
|
|
2011-08-14 08:52:14 +00:00
|
|
|
(defvar message-cite-prefix-regexp) ; defined in message.el
|
|
|
|
(defvar message-signature-separator) ; defined in message.el
|
2015-05-30 12:28:35 +00:00
|
|
|
(defvar org-bracket-link-regexp) ; defined in org.el
|
|
|
|
(defvar org-complex-heading-regexp) ; defined in org.el
|
|
|
|
(defvar org-element-all-elements) ; defined in org-element.el
|
|
|
|
(defvar org-element-all-objects) ; defined in org-element.el
|
|
|
|
(defvar org-odd-levels-only) ; defined in org.el
|
2015-10-26 08:29:13 +00:00
|
|
|
(defvar org-outline-regexp) ; defined in org.el
|
2015-05-30 12:28:35 +00:00
|
|
|
(defvar org-outline-regexp-bol) ; defined in org.el
|
2008-12-30 22:40:14 +00:00
|
|
|
|
|
|
|
(defconst org-footnote-re
|
2011-06-28 23:14:13 +00:00
|
|
|
;; Only [1]-like footnotes are closed in this regexp, as footnotes
|
|
|
|
;; from other types might contain square brackets (i.e. links) in
|
|
|
|
;; their definition.
|
2011-04-29 13:46:25 +00:00
|
|
|
;;
|
|
|
|
;; `org-re' is used for regexp compatibility with XEmacs.
|
2011-10-21 20:36:53 +00:00
|
|
|
(concat "\\[\\(?:"
|
|
|
|
;; Match inline footnotes.
|
|
|
|
(org-re "fn:\\([-_[:word:]]+\\)?:\\|")
|
|
|
|
;; Match other footnotes.
|
|
|
|
"\\(?:\\([0-9]+\\)\\]\\)\\|"
|
|
|
|
(org-re "\\(fn:[-_[:word:]]+\\)")
|
|
|
|
"\\)")
|
2008-12-30 22:40:14 +00:00
|
|
|
"Regular expression for matching footnotes.")
|
|
|
|
|
2009-06-08 06:00:46 +00:00
|
|
|
(defconst org-footnote-definition-re
|
2011-08-16 13:31:20 +00:00
|
|
|
(org-re "^\\[\\([0-9]+\\|fn:[-_[:word:]]+\\)\\]")
|
2008-12-30 22:40:14 +00:00
|
|
|
"Regular expression matching the definition of a footnote.")
|
|
|
|
|
2012-02-24 08:42:15 +00:00
|
|
|
(defconst org-footnote-forbidden-blocks
|
Remove references to the DocBook exporter
* org.el (org-emphasis-alist, org-protecting-blocks):
* org-src.el (org-edit-src-find-region-and-lang):
* org-list.el (org-list-forbidden-blocks):
* org-footnote.el (org-footnote-forbidden-blocks): Remove
references to the deleted DocBook exporter.
* org.texi (Top, Markup, Initial text, Images and tables)
(@LaTeX{} fragments, @LaTeX{} fragments, Exporting)
(Export options, JavaScript support, Beamer class export):
Remove references to the DocBook export, which has been
deleted.
(History and Acknowledgments): Mention that DocBook has been
deleted, suggest to use the Texinfo exporter instead, then to
convert the .texi to DocBook with makeinfo.
(Links in ODT export, Tables in ODT export): Fix indices.
2013-02-14 08:48:36 +00:00
|
|
|
'("ascii" "beamer" "comment" "example" "html" "latex" "odt" "src")
|
2011-07-10 08:33:25 +00:00
|
|
|
"Names of blocks where footnotes are not allowed.")
|
2011-07-08 13:48:07 +00:00
|
|
|
|
2010-04-27 06:11:03 +00:00
|
|
|
(defgroup org-footnote nil
|
|
|
|
"Footnotes in Org-mode."
|
|
|
|
:tag "Org Footnote"
|
|
|
|
:group 'org)
|
|
|
|
|
2008-12-30 22:40:14 +00:00
|
|
|
(defcustom org-footnote-section "Footnotes"
|
2013-01-27 23:02:51 +00:00
|
|
|
"Outline heading containing footnote definitions.
|
|
|
|
|
|
|
|
This can be nil, to place footnotes locally at the end of the
|
|
|
|
current outline node. If can also be the name of a special
|
|
|
|
outline heading under which footnotes should be put.
|
|
|
|
|
2009-01-01 17:01:07 +00:00
|
|
|
This variable defines the place where Org puts the definition
|
2013-01-27 23:02:51 +00:00
|
|
|
automatically, i.e. when creating the footnote, and when sorting
|
|
|
|
the notes. However, by hand you may place definitions
|
|
|
|
*anywhere*.
|
|
|
|
|
|
|
|
If this is a string, during export, all subtrees starting with
|
org-element: Implement caching for dynamic parser
* lisp/org-element.el (org-element-use-cache, org-element--cache,
org-element--cache-sync-idle-time,
org-element--cache-merge-changes-threshold, org-element--cache-status,
org-element--cache-opening-line, org-element--cache-closing-line): New
variables.
(org-element-cache-reset, org-element--cache-pending-changes-p,
org-element--cache-push-change, org-element--cache-cancel-changes,
org-element--cache-get-key, org-element-cache-get,
org-element-cache-put, org-element--shift-positions,
org-element--cache-before-change, org-element--cache-record-change,
org-element--cache-sync): New functions.
(org-element-at-point, org-element-context): Use cache when possible.
* lisp/org.el (org-mode, org-set-modules): Reset cache.
* lisp/org-footnote.el (org-footnote-section): Reset cache.
* testing/lisp/test-org-element.el: Update tests.
This patch gives a boost to `org-element-at-point' and, to a lesser
extent, to `org-element-context'.
2013-10-27 10:09:17 +00:00
|
|
|
this heading will be ignored.
|
|
|
|
|
|
|
|
If you don't use the customize interface to change this variable,
|
|
|
|
you will need to run the following command after the change:
|
|
|
|
|
|
|
|
\\[universal-argument] \\[org-element-cache-reset]"
|
2010-04-27 06:11:03 +00:00
|
|
|
:group 'org-footnote
|
2013-11-17 08:52:54 +00:00
|
|
|
:initialize 'custom-initialize-default
|
2013-11-05 19:47:29 +00:00
|
|
|
:set (lambda (var val)
|
|
|
|
(set var val)
|
|
|
|
(when (fboundp 'org-element-cache-reset)
|
|
|
|
(org-element-cache-reset 'all)))
|
2009-01-01 17:01:07 +00:00
|
|
|
:type '(choice
|
2009-11-12 12:39:29 +00:00
|
|
|
(string :tag "Collect footnotes under heading")
|
2009-01-03 08:03:04 +00:00
|
|
|
(const :tag "Define footnotes locally" nil)))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
|
|
|
(defcustom org-footnote-tag-for-non-org-mode-files "Footnotes:"
|
|
|
|
"Tag marking the beginning of footnote section.
|
2011-08-16 18:02:30 +00:00
|
|
|
The Org footnote engine can be used in arbitrary text files as well
|
|
|
|
as in Org-mode. Outside Org mode, new footnotes are always placed at
|
2008-12-30 22:40:14 +00:00
|
|
|
the end of the file. When you normalize the notes, any line containing
|
|
|
|
only this tag will be removed, a new one will be inserted at the end
|
2011-08-16 18:02:30 +00:00
|
|
|
of the file, followed by the collected and normalized footnotes.
|
|
|
|
|
|
|
|
If you don't want any tag in such buffers, set this variable to nil."
|
2010-04-27 06:11:03 +00:00
|
|
|
:group 'org-footnote
|
2011-08-16 18:02:30 +00:00
|
|
|
:type '(choice
|
|
|
|
(string :tag "Collect footnotes under tag")
|
|
|
|
(const :tag "Don't use a tag" nil)))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
|
|
|
(defcustom org-footnote-define-inline nil
|
2010-01-21 15:15:40 +00:00
|
|
|
"Non-nil means define footnotes inline, at reference location.
|
2008-12-30 22:40:14 +00:00
|
|
|
When nil, footnotes will be defined in a special section near
|
|
|
|
the end of the document. When t, the [fn:label:definition] notation
|
|
|
|
will be used to define the footnote at the reference position."
|
|
|
|
:group 'org-footnote
|
|
|
|
:type 'boolean)
|
|
|
|
|
2009-01-02 14:53:02 +00:00
|
|
|
(defcustom org-footnote-auto-label t
|
2010-01-21 15:15:40 +00:00
|
|
|
"Non-nil means define automatically new labels for footnotes.
|
2009-01-02 14:53:02 +00:00
|
|
|
Possible values are:
|
|
|
|
|
2013-04-08 16:08:03 +00:00
|
|
|
nil Prompt the user for each label.
|
|
|
|
t Create unique labels of the form [fn:1], [fn:2], etc.
|
|
|
|
confirm Like t, but let the user edit the created value.
|
|
|
|
The label can be removed from the minibuffer to create
|
2009-01-02 14:53:02 +00:00
|
|
|
an anonymous footnote.
|
2011-03-11 18:50:59 +00:00
|
|
|
random Automatically generate a unique, random label.
|
2013-04-08 16:08:03 +00:00
|
|
|
plain Automatically create plain number labels like [1]."
|
2009-01-02 14:53:02 +00:00
|
|
|
:group 'org-footnote
|
|
|
|
:type '(choice
|
2009-11-12 12:39:29 +00:00
|
|
|
(const :tag "Prompt for label" nil)
|
2009-01-02 14:53:02 +00:00
|
|
|
(const :tag "Create automatic [fn:N]" t)
|
|
|
|
(const :tag "Offer automatic [fn:N] for editing" confirm)
|
2011-03-11 18:50:59 +00:00
|
|
|
(const :tag "Create a random label" random)
|
2009-01-02 14:53:02 +00:00
|
|
|
(const :tag "Create automatic [N]" plain)))
|
|
|
|
|
2009-07-03 15:56:47 +00:00
|
|
|
(defcustom org-footnote-auto-adjust nil
|
2010-01-21 15:15:40 +00:00
|
|
|
"Non-nil means automatically adjust footnotes after insert/delete.
|
2009-07-03 15:56:47 +00:00
|
|
|
When this is t, after each insertion or deletion of a footnote,
|
|
|
|
simple fn:N footnotes will be renumbered, and all footnotes will be sorted.
|
|
|
|
If you want to have just sorting or just renumbering, set this variable
|
|
|
|
to `sort' or `renumber'.
|
|
|
|
|
|
|
|
The main values of this variable can be set with in-buffer options:
|
|
|
|
|
|
|
|
#+STARTUP: fnadjust
|
|
|
|
#+STARTUP: nofnadjust"
|
|
|
|
:group 'org-footnote
|
|
|
|
:type '(choice
|
2013-05-09 13:19:02 +00:00
|
|
|
(const :tag "No adjustment" nil)
|
2009-07-03 15:56:47 +00:00
|
|
|
(const :tag "Renumber" renumber)
|
|
|
|
(const :tag "Sort" sort)
|
|
|
|
(const :tag "Renumber and Sort" t)))
|
|
|
|
|
2009-01-03 08:03:04 +00:00
|
|
|
(defcustom org-footnote-fill-after-inline-note-extraction nil
|
2010-01-21 15:15:40 +00:00
|
|
|
"Non-nil means fill paragraphs after extracting footnotes.
|
2009-01-03 08:03:04 +00:00
|
|
|
When extracting inline footnotes, the lengths of lines can change a lot.
|
|
|
|
When this option is set, paragraphs from which an inline footnote has been
|
|
|
|
extracted will be filled again."
|
|
|
|
:group 'org-footnote
|
|
|
|
:type 'boolean)
|
|
|
|
|
2011-07-08 13:48:07 +00:00
|
|
|
(defun org-footnote-in-valid-context-p ()
|
|
|
|
"Is point in a context where footnotes are allowed?"
|
2011-07-19 10:51:23 +00:00
|
|
|
(save-match-data
|
2015-12-05 13:41:33 +00:00
|
|
|
(and
|
|
|
|
(not (org-at-comment-p))
|
|
|
|
(not (org-in-verbatim-emphasis))
|
|
|
|
;; Avoid forbidden blocks.
|
|
|
|
(not (org-in-block-p org-footnote-forbidden-blocks))
|
|
|
|
;; Avoid literal example.
|
|
|
|
(not (save-excursion
|
|
|
|
(beginning-of-line)
|
|
|
|
(looking-at "[ \t]*:[ \t]+")))
|
|
|
|
;; The latex fragment check seems expensive, so save it for last.
|
|
|
|
;; See <http://mid.gmane.org/loom.20151204T081351-244@post.gmane.org>.
|
|
|
|
(not (org-inside-LaTeX-fragment-p))
|
|
|
|
;; Avoid cited text and headers in message-mode.
|
|
|
|
(not (and (derived-mode-p 'message-mode)
|
|
|
|
(or (save-excursion
|
|
|
|
(beginning-of-line)
|
|
|
|
(looking-at message-cite-prefix-regexp))
|
|
|
|
(message-point-in-header-p)))))))
|
2011-07-08 13:48:07 +00:00
|
|
|
|
2008-12-30 22:40:14 +00:00
|
|
|
(defun org-footnote-at-reference-p ()
|
|
|
|
"Is the cursor at a footnote reference?
|
2011-04-29 13:46:25 +00:00
|
|
|
|
2011-07-14 07:49:50 +00:00
|
|
|
If so, return a list containing its label, beginning and ending
|
|
|
|
positions, and the definition, when inlined."
|
2011-07-08 13:48:07 +00:00
|
|
|
(when (and (org-footnote-in-valid-context-p)
|
2011-06-30 08:59:54 +00:00
|
|
|
(or (looking-at org-footnote-re)
|
|
|
|
(org-in-regexp org-footnote-re)
|
2011-04-29 13:46:25 +00:00
|
|
|
(save-excursion (re-search-backward org-footnote-re nil t)))
|
2011-11-06 13:14:12 +00:00
|
|
|
(/= (match-beginning 0) (point-at-bol)))
|
2011-04-29 13:46:25 +00:00
|
|
|
(let* ((beg (match-beginning 0))
|
2011-10-24 06:10:56 +00:00
|
|
|
(label (or (org-match-string-no-properties 2)
|
|
|
|
(org-match-string-no-properties 3)
|
2011-04-29 13:46:25 +00:00
|
|
|
;; Anonymous footnotes don't have labels
|
2011-10-24 06:10:56 +00:00
|
|
|
(and (match-string 1)
|
|
|
|
(concat "fn:" (org-match-string-no-properties 1)))))
|
2011-04-29 13:46:25 +00:00
|
|
|
;; Inline footnotes don't end at (match-end 0) as
|
|
|
|
;; `org-footnote-re' stops just after the second colon.
|
|
|
|
;; Find the real ending with `scan-sexps', so Org doesn't
|
|
|
|
;; get fooled by unrelated closing square brackets.
|
|
|
|
(end (ignore-errors (scan-sexps beg 1))))
|
|
|
|
;; Point is really at a reference if it's located before true
|
2011-07-18 19:54:24 +00:00
|
|
|
;; ending of the footnote.
|
2011-07-19 10:51:23 +00:00
|
|
|
(when (and end (< (point) end)
|
|
|
|
;; Verify match isn't a part of a link.
|
|
|
|
(not (save-excursion
|
|
|
|
(goto-char beg)
|
|
|
|
(let ((linkp
|
|
|
|
(save-match-data
|
|
|
|
(org-in-regexp org-bracket-link-regexp))))
|
|
|
|
(and linkp (< (point) (cdr linkp))))))
|
|
|
|
;; Verify point doesn't belong to a LaTeX macro.
|
2013-01-30 15:06:01 +00:00
|
|
|
(not (org-inside-latex-macro-p)))
|
2011-04-29 13:46:25 +00:00
|
|
|
(list label beg end
|
|
|
|
;; Definition: ensure this is an inline footnote first.
|
|
|
|
(and (or (not label) (match-string 1))
|
2011-10-29 12:21:56 +00:00
|
|
|
(org-trim (buffer-substring-no-properties
|
|
|
|
(match-end 0) (1- end)))))))))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
|
|
|
(defun org-footnote-at-definition-p ()
|
2012-02-02 08:08:28 +00:00
|
|
|
"Is point within a footnote definition?
|
2011-04-29 13:46:25 +00:00
|
|
|
|
2012-02-02 08:08:28 +00:00
|
|
|
This matches only pure definitions like [1] or [fn:name] at the
|
|
|
|
beginning of a line. It does not match references like
|
|
|
|
\[fn:name:definition], where the footnote text is included and
|
|
|
|
defined locally.
|
2011-04-29 13:46:25 +00:00
|
|
|
|
2012-02-02 08:08:28 +00:00
|
|
|
The return value will be nil if not at a footnote definition, and
|
|
|
|
a list with label, start, end and definition of the footnote
|
|
|
|
otherwise."
|
2011-09-17 10:01:54 +00:00
|
|
|
(when (save-excursion (beginning-of-line) (org-footnote-in-valid-context-p))
|
2011-07-18 19:54:24 +00:00
|
|
|
(save-excursion
|
|
|
|
(end-of-line)
|
2013-02-21 14:30:16 +00:00
|
|
|
;; Footnotes definitions are separated by new headlines, another
|
|
|
|
;; footnote definition or 2 blank lines.
|
|
|
|
(let ((lim (save-excursion
|
|
|
|
(re-search-backward
|
|
|
|
(concat org-outline-regexp-bol
|
|
|
|
"\\|^\\([ \t]*\n\\)\\{2,\\}") nil t))))
|
2011-07-18 19:54:24 +00:00
|
|
|
(when (re-search-backward org-footnote-definition-re lim t)
|
2012-02-02 08:08:28 +00:00
|
|
|
(let ((label (org-match-string-no-properties 1))
|
|
|
|
(beg (match-beginning 0))
|
|
|
|
(beg-def (match-end 0))
|
|
|
|
;; In message-mode, do not search after signature.
|
|
|
|
(end (let ((bound (and (derived-mode-p 'message-mode)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-max))
|
|
|
|
(re-search-backward
|
|
|
|
message-signature-separator nil t)))))
|
|
|
|
(if (progn
|
|
|
|
(end-of-line)
|
|
|
|
(re-search-forward
|
2011-09-29 20:44:58 +00:00
|
|
|
(concat org-outline-regexp-bol "\\|"
|
|
|
|
org-footnote-definition-re "\\|"
|
2013-02-21 14:30:16 +00:00
|
|
|
"^\\([ \t]*\n\\)\\{2,\\}") bound 'move))
|
2012-04-06 17:14:51 +00:00
|
|
|
(match-beginning 0)
|
2012-02-02 08:08:28 +00:00
|
|
|
(point)))))
|
|
|
|
(list label beg end
|
|
|
|
(org-trim (buffer-substring-no-properties beg-def end)))))))))
|
2011-04-29 13:46:25 +00:00
|
|
|
|
2011-04-30 11:23:21 +00:00
|
|
|
(defun org-footnote-get-next-reference (&optional label backward limit)
|
|
|
|
"Return complete reference of the next footnote.
|
|
|
|
|
|
|
|
If LABEL is provided, get the next reference of that footnote. If
|
|
|
|
BACKWARD is non-nil, find previous reference instead. LIMIT is
|
|
|
|
the buffer position bounding the search.
|
|
|
|
|
|
|
|
Return value is a list like those provided by `org-footnote-at-reference-p'.
|
|
|
|
If no footnote is found, return nil."
|
|
|
|
(save-excursion
|
2011-05-02 09:34:06 +00:00
|
|
|
(let* ((label-fmt (if label (format "\\[%s[]:]" label) org-footnote-re)))
|
2011-04-30 11:23:21 +00:00
|
|
|
(catch 'exit
|
|
|
|
(while t
|
|
|
|
(unless (funcall (if backward #'re-search-backward #'re-search-forward)
|
|
|
|
label-fmt limit t)
|
|
|
|
(throw 'exit nil))
|
|
|
|
(unless backward (backward-char))
|
2011-05-02 09:34:06 +00:00
|
|
|
(let ((ref (org-footnote-at-reference-p)))
|
|
|
|
(when ref (throw 'exit ref))))))))
|
|
|
|
|
|
|
|
(defun org-footnote-next-reference-or-definition (limit)
|
|
|
|
"Move point to next footnote reference or definition.
|
|
|
|
|
|
|
|
LIMIT is the buffer position bounding the search.
|
|
|
|
|
|
|
|
Return value is a list like those provided by
|
|
|
|
`org-footnote-at-reference-p' or `org-footnote-at-definition-p'.
|
|
|
|
If no footnote is found, return nil."
|
2011-07-29 19:06:38 +00:00
|
|
|
(let* (ref (origin (point)))
|
2011-05-02 09:34:06 +00:00
|
|
|
(catch 'exit
|
|
|
|
(while t
|
|
|
|
(unless (re-search-forward org-footnote-re limit t)
|
2011-07-29 19:06:38 +00:00
|
|
|
(goto-char origin)
|
2011-05-02 09:34:06 +00:00
|
|
|
(throw 'exit nil))
|
2011-06-28 23:14:13 +00:00
|
|
|
;; Beware: with [1]-like footnotes point will be just after
|
|
|
|
;; the closing square bracket.
|
|
|
|
(backward-char)
|
2011-05-02 09:34:06 +00:00
|
|
|
(cond
|
|
|
|
((setq ref (org-footnote-at-reference-p))
|
|
|
|
(throw 'exit ref))
|
2011-06-28 23:14:13 +00:00
|
|
|
;; Definition: also grab the last square bracket, only
|
|
|
|
;; matched in `org-footnote-re' for [1]-like footnotes.
|
2011-07-05 11:28:03 +00:00
|
|
|
((save-match-data (org-footnote-at-definition-p))
|
2011-06-28 23:14:13 +00:00
|
|
|
(let ((end (match-end 0)))
|
|
|
|
(throw 'exit
|
|
|
|
(list nil (match-beginning 0)
|
|
|
|
(if (eq (char-before end) 93) end (1+ end)))))))))))
|
2011-04-30 11:23:21 +00:00
|
|
|
|
2011-04-29 13:46:25 +00:00
|
|
|
(defun org-footnote-get-definition (label)
|
|
|
|
"Return label, boundaries and definition of the footnote LABEL."
|
|
|
|
(let* ((label (regexp-quote (org-footnote-normalize-label label)))
|
2015-05-02 13:34:31 +00:00
|
|
|
(re (format "^\\[%s\\]\\|.\\[%s:" label label)))
|
|
|
|
(org-with-wide-buffer
|
|
|
|
(goto-char (point-min))
|
|
|
|
(catch 'found
|
|
|
|
(while (re-search-forward re nil t)
|
|
|
|
(let* ((datum (progn (backward-char) (org-element-context)))
|
|
|
|
(type (org-element-type datum)))
|
|
|
|
(when (memq type '(footnote-definition footnote-reference))
|
|
|
|
(throw 'found
|
2015-05-04 07:38:32 +00:00
|
|
|
(list
|
|
|
|
label
|
|
|
|
(org-element-property :begin datum)
|
|
|
|
(org-element-property :end datum)
|
|
|
|
(let ((cbeg (org-element-property :contents-begin datum)))
|
|
|
|
(if (not cbeg) ""
|
|
|
|
(replace-regexp-in-string
|
|
|
|
"[ \t\n]*\\'"
|
|
|
|
""
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
cbeg
|
|
|
|
(org-element-property :contents-end datum))))))))))
|
2015-05-02 13:34:31 +00:00
|
|
|
nil))))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
2015-05-06 21:15:42 +00:00
|
|
|
(defun org-footnote-goto-definition (label &optional location)
|
2011-09-29 13:30:46 +00:00
|
|
|
"Move point to the definition of the footnote LABEL.
|
2015-05-06 21:15:42 +00:00
|
|
|
|
|
|
|
LOCATION, when non-nil specifies the buffer position of the
|
|
|
|
definition.
|
|
|
|
|
|
|
|
Throw an error if there is no definition or if it cannot be
|
|
|
|
reached from current narrowed part of buffer. Return a non-nil
|
|
|
|
value if point was successfully moved."
|
2008-12-30 22:40:14 +00:00
|
|
|
(interactive "sLabel: ")
|
2015-05-06 21:15:42 +00:00
|
|
|
(let ((def-start (or location (nth 1 (org-footnote-get-definition label)))))
|
2015-04-25 08:36:35 +00:00
|
|
|
(cond
|
2015-04-25 09:09:05 +00:00
|
|
|
((not def-start)
|
|
|
|
(user-error "Cannot find definition of footnote %s" label))
|
2015-05-06 21:15:42 +00:00
|
|
|
((or (> def-start (point-max)) (< def-start (point-min)))
|
|
|
|
(user-error "Definition is outside narrowed part of buffer")))
|
|
|
|
(org-mark-ring-push)
|
|
|
|
(goto-char def-start)
|
2015-08-14 14:15:09 +00:00
|
|
|
(looking-at (format "\\[%s[]:] ?" label))
|
2015-05-06 21:15:42 +00:00
|
|
|
(goto-char (match-end 0))
|
|
|
|
(org-show-context 'link-search)
|
|
|
|
(when (derived-mode-p 'org-mode)
|
|
|
|
(message
|
|
|
|
(substitute-command-keys
|
|
|
|
"Edit definition and go back with `\\[org-mark-ring-goto]' or, if \
|
|
|
|
unique, with `\\[org-ctrl-c-ctrl-c]'.")))
|
|
|
|
t))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
2010-04-14 14:45:45 +00:00
|
|
|
(defun org-footnote-goto-previous-reference (label)
|
2010-10-24 12:40:54 +00:00
|
|
|
"Find the first closest (to point) reference of footnote with label LABEL."
|
2008-12-30 22:40:14 +00:00
|
|
|
(interactive "sLabel: ")
|
|
|
|
(org-mark-ring-push)
|
2011-04-30 11:23:21 +00:00
|
|
|
(let* ((label (org-footnote-normalize-label label)) ref)
|
2008-12-30 22:40:14 +00:00
|
|
|
(save-excursion
|
2011-04-30 11:23:21 +00:00
|
|
|
(setq ref (or (org-footnote-get-next-reference label t)
|
|
|
|
(org-footnote-get-next-reference label)
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(or
|
|
|
|
(org-footnote-get-next-reference label t)
|
|
|
|
(org-footnote-get-next-reference label))))))
|
|
|
|
(if (not ref)
|
|
|
|
(error "Cannot find reference of footnote %s" label)
|
|
|
|
(goto-char (nth 1 ref))
|
|
|
|
(org-show-context 'link-search))))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
|
|
|
(defun org-footnote-normalize-label (label)
|
2011-05-02 09:37:39 +00:00
|
|
|
"Return LABEL as an appropriate string."
|
|
|
|
(cond
|
|
|
|
((numberp label) (number-to-string label))
|
|
|
|
((equal "" label) nil)
|
|
|
|
((not (string-match "^[0-9]+$\\|^fn:" label))
|
|
|
|
(concat "fn:" label))
|
|
|
|
(t label)))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
2011-05-11 16:02:15 +00:00
|
|
|
(defun org-footnote-all-labels (&optional with-defs)
|
|
|
|
"Return list with all defined foot labels used in the buffer.
|
|
|
|
|
|
|
|
If WITH-DEFS is non-nil, also associate the definition to each
|
|
|
|
label. The function will then return an alist whose key is label
|
|
|
|
and value definition."
|
2011-07-03 19:32:41 +00:00
|
|
|
(let* (rtn
|
|
|
|
(push-to-rtn
|
|
|
|
(function
|
|
|
|
;; Depending on WITH-DEFS, store label or (label . def) of
|
|
|
|
;; footnote reference/definition given as argument in RTN.
|
|
|
|
(lambda (el)
|
|
|
|
(let ((lbl (car el)))
|
|
|
|
(push (if with-defs (cons lbl (nth 3 el)) lbl) rtn))))))
|
2008-12-30 22:40:14 +00:00
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
2011-04-30 11:23:21 +00:00
|
|
|
;; Find all labels found in definitions.
|
2008-12-30 22:40:14 +00:00
|
|
|
(goto-char (point-min))
|
2011-05-11 16:02:15 +00:00
|
|
|
(let (def)
|
|
|
|
(while (re-search-forward org-footnote-definition-re nil t)
|
|
|
|
(when (setq def (org-footnote-at-definition-p))
|
|
|
|
(funcall push-to-rtn def))))
|
2011-04-30 11:23:21 +00:00
|
|
|
;; Find all labels found in references.
|
2008-12-30 22:40:14 +00:00
|
|
|
(goto-char (point-min))
|
2011-05-11 16:02:15 +00:00
|
|
|
(let (ref)
|
|
|
|
(while (setq ref (org-footnote-get-next-reference))
|
|
|
|
(goto-char (nth 2 ref))
|
|
|
|
(and (car ref) ; ignore anonymous footnotes
|
|
|
|
(not (funcall (if with-defs #'assoc #'member) (car ref) rtn))
|
|
|
|
(funcall push-to-rtn ref))))))
|
2008-12-30 22:40:14 +00:00
|
|
|
rtn))
|
|
|
|
|
2009-01-02 14:53:02 +00:00
|
|
|
(defun org-footnote-unique-label (&optional current)
|
|
|
|
"Return a new unique footnote label.
|
2011-08-23 19:26:51 +00:00
|
|
|
|
2011-08-06 10:07:37 +00:00
|
|
|
The function returns the first \"fn:N\" or \"N\" label that is
|
2011-08-23 19:26:51 +00:00
|
|
|
currently not used.
|
|
|
|
|
|
|
|
Optional argument CURRENT is the list of labels active in the
|
|
|
|
buffer."
|
2009-01-02 14:53:02 +00:00
|
|
|
(unless current (setq current (org-footnote-all-labels)))
|
|
|
|
(let ((fmt (if (eq org-footnote-auto-label 'plain) "%d" "fn:%d"))
|
|
|
|
(cnt 1))
|
|
|
|
(while (member (format fmt cnt) current)
|
|
|
|
(incf cnt))
|
|
|
|
(format fmt cnt)))
|
|
|
|
|
2015-02-15 20:30:29 +00:00
|
|
|
(defun org-footnote--allow-reference-p ()
|
|
|
|
"Non-nil when a footnote reference can be inserted at point."
|
|
|
|
;; XXX: This is similar to `org-footnote-in-valid-context-p' but
|
|
|
|
;; more accurate and usually faster, except in some corner cases.
|
|
|
|
;; It may replace it after doing proper benchmarks as it would be
|
|
|
|
;; used in fontification.
|
|
|
|
(unless (bolp)
|
|
|
|
(let* ((context (org-element-context))
|
|
|
|
(type (org-element-type context)))
|
|
|
|
(cond
|
|
|
|
;; No footnote reference in attributes.
|
|
|
|
((let ((post (org-element-property :post-affiliated context)))
|
|
|
|
(and post (< (point) post)))
|
|
|
|
nil)
|
|
|
|
;; Paragraphs and blank lines at top of document are fine.
|
|
|
|
((memq type '(nil paragraph)))
|
|
|
|
;; So are contents of verse blocks.
|
|
|
|
((eq type 'verse-block)
|
|
|
|
(and (>= (point) (org-element-property :contents-begin context))
|
|
|
|
(< (point) (org-element-property :contents-end context))))
|
2015-04-11 22:25:33 +00:00
|
|
|
;; In an headline or inlinetask, point must be either on the
|
|
|
|
;; heading itself or on the blank lines below.
|
|
|
|
((memq type '(headline inlinetask))
|
|
|
|
(or (not (org-at-heading-p))
|
|
|
|
(and (save-excursion (beginning-of-line)
|
|
|
|
(and (let ((case-fold-search t))
|
|
|
|
(not (looking-at "\\*+ END[ \t]*$")))
|
|
|
|
(looking-at org-complex-heading-regexp)))
|
|
|
|
(match-beginning 4)
|
|
|
|
(>= (point) (match-beginning 4))
|
|
|
|
(or (not (match-beginning 5))
|
|
|
|
(< (point) (match-beginning 5))))))
|
2015-02-15 20:30:29 +00:00
|
|
|
;; White spaces after an object or blank lines after an element
|
|
|
|
;; are OK.
|
|
|
|
((>= (point)
|
|
|
|
(save-excursion (goto-char (org-element-property :end context))
|
|
|
|
(skip-chars-backward " \r\t\n")
|
|
|
|
(if (memq type org-element-all-objects) (point)
|
|
|
|
(1+ (line-beginning-position 2))))))
|
|
|
|
;; Other elements are invalid.
|
|
|
|
((memq type org-element-all-elements) nil)
|
|
|
|
;; Just before object is fine.
|
|
|
|
((= (point) (org-element-property :begin context)))
|
|
|
|
;; Within recursive object too, but not in a link.
|
|
|
|
((eq type 'link) nil)
|
|
|
|
((let ((cbeg (org-element-property :contents-begin context))
|
|
|
|
(cend (org-element-property :contents-end context)))
|
|
|
|
(and cbeg (>= (point) cbeg) (<= (point) cend))))))))
|
|
|
|
|
2008-12-30 22:40:14 +00:00
|
|
|
(defun org-footnote-new ()
|
|
|
|
"Insert a new footnote.
|
|
|
|
This command prompts for a label. If this is a label referencing an
|
|
|
|
existing label, only insert the label. If the footnote label is empty
|
|
|
|
or new, let the user edit the definition of the footnote."
|
|
|
|
(interactive)
|
2015-02-15 20:30:29 +00:00
|
|
|
(unless (org-footnote--allow-reference-p)
|
|
|
|
(user-error "Cannot insert a footnote here"))
|
|
|
|
(let* ((all (org-footnote-all-labels))
|
2014-05-31 09:26:37 +00:00
|
|
|
(label
|
|
|
|
(org-footnote-normalize-label
|
2015-02-15 20:30:29 +00:00
|
|
|
(if (eq org-footnote-auto-label 'random)
|
2015-11-30 15:08:00 +00:00
|
|
|
(format "fn:%x" (random most-positive-fixnum))
|
2015-02-15 20:30:29 +00:00
|
|
|
(let ((propose (org-footnote-unique-label all)))
|
|
|
|
(if (memq org-footnote-auto-label '(t plain)) propose
|
|
|
|
(org-icompleting-read
|
|
|
|
"Label (leave empty for anonymous): "
|
|
|
|
(mapcar #'list all) nil nil
|
|
|
|
(and (eq org-footnote-auto-label 'confirm) propose))))))))
|
|
|
|
(cond ((not label)
|
2015-05-06 21:23:54 +00:00
|
|
|
(insert "[fn::]")
|
2015-02-15 20:30:29 +00:00
|
|
|
(backward-char 1))
|
|
|
|
((member label all)
|
|
|
|
(insert "[" label "]")
|
|
|
|
(message "New reference to existing note"))
|
|
|
|
(org-footnote-define-inline
|
2015-05-06 21:23:54 +00:00
|
|
|
(insert "[" label ":]")
|
2015-02-15 20:30:29 +00:00
|
|
|
(backward-char 1)
|
|
|
|
(org-footnote-auto-adjust-maybe))
|
|
|
|
(t
|
|
|
|
(insert "[" label "]")
|
2015-08-14 14:17:18 +00:00
|
|
|
(let ((p (org-footnote-create-definition label)))
|
|
|
|
;; `org-footnote-goto-definition' needs to be called
|
|
|
|
;; after `org-footnote-auto-adjust-maybe'. Otherwise
|
|
|
|
;; both label and location of the definition are lost.
|
|
|
|
;; On the contrary, it needs to be called before
|
|
|
|
;; `org-edit-footnote-reference' so that the remote
|
|
|
|
;; editing buffer can display the correct label.
|
|
|
|
(if (ignore-errors (org-footnote-goto-definition label p))
|
|
|
|
(org-footnote-auto-adjust-maybe)
|
|
|
|
;; Definition was created outside current scope: edit
|
|
|
|
;; it remotely.
|
|
|
|
(org-footnote-auto-adjust-maybe)
|
|
|
|
(org-edit-footnote-reference)))))))
|
2015-05-06 21:23:54 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defvar electric-indent-mode)
|
2015-05-06 21:23:54 +00:00
|
|
|
(defvar org-blank-before-new-entry) ; Silence byte-compiler.
|
2008-12-30 22:40:14 +00:00
|
|
|
(defun org-footnote-create-definition (label)
|
2015-05-06 21:23:54 +00:00
|
|
|
"Start the definition of a footnote with label LABEL.
|
|
|
|
Return buffer position at the beginning of the definition. In an
|
|
|
|
Org buffer, this function doesn't move point."
|
2013-01-26 12:40:18 +00:00
|
|
|
(let ((label (org-footnote-normalize-label label))
|
2015-05-06 21:23:54 +00:00
|
|
|
electric-indent-mode) ; Prevent wrong indentation.
|
2008-12-30 22:40:14 +00:00
|
|
|
(cond
|
2015-05-06 21:23:54 +00:00
|
|
|
;; In an Org document.
|
Use (derived-mode-p 'org-mode) instead of (eq major-mode 'org-mode).
* org.el (org-show-hierarchy-above, org-cycle)
(org-global-cycle, org-files-list, org-store-link)
(org-link-search, org-open-file, org-display-outline-path)
(org-refile-get-location, org-update-all-dblocks)
(org-change-tag-in-region, org-entry-properties)
(org-save-all-org-buffers, org-revert-all-org-buffers)
(org-buffer-list, org-cdlatex-mode)
(org-install-agenda-files-menu, org-end-of-subtree)
(org-speedbar-set-agenda-restriction): Use (derived-mode-p
'org-mode) instead of (eq major-mode 'org-mode).
* org-timer.el (org-timer-set-timer): Ditto.
* org-table.el (orgtbl-mode, org-table-align, orgtbl-mode): Ditto.
* org-src.el (org-edit-src-exit, org-edit-src-code)
(org-edit-fixed-width-region, org-edit-src-exit): Ditto.
* org-remember.el (org-remember-handler): Ditto.
* org-mouse.el (dnd-open-file, org-mouse-insert-item): Ditto.
* org-macs.el (org-get-limited-outline-regexp): Ditto.
* org-lparse.el (org-replace-region-by): Ditto.
* org-latex.el (org-latex-to-pdf-process)
(org-replace-region-by-latex): Ditto.
* org-indent.el (org-indent-indent-buffer): Ditto.
* org-id.el (org-id-store-link, org-id-update-id-locations)
(org-id-store-link): Ditto.
* org-html.el (org-export-html-preprocess)
(org-replace-region-by-html): Ditto.
* org-footnote.el (org-footnote-normalize)
(org-footnote-goto-definition)
(org-footnote-create-definition, org-footnote-normalize): Ditto.
* org-docbook.el (org-replace-region-by-docbook): Ditto.
* org-ctags.el (find-tag): Ditto.
* org-colview.el (org-columns-redo)
(org-columns-display-here, org-columns-edit-value)
(org-columns-redo): Ditto.
* org-colview-xemacs.el (org-columns-redo)
(org-columns-display-here, org-columns-edit-value)
(org-columns-redo): Ditto.
* org-capture.el (org-capture-insert-template-here)
(org-capture, org-capture-finalize)
(org-capture-set-target-location)
(org-capture-insert-template-here): Ditto.
* org-ascii.el (org-replace-region-by-ascii): Ditto.
* org-archive.el (org-archive-subtree): Ditto.
* org-agenda.el (org-agenda)
(org-agenda-get-restriction-and-command)
(org-agenda-get-some-entry-text, org-search-view)
(org-tags-view, org-agenda-get-day-entries)
(org-agenda-format-item, org-agenda-goto, org-agenda-kill)
(org-agenda-archive-with, org-agenda-switch-to): Ditto.
2012-04-20 18:03:45 +00:00
|
|
|
((derived-mode-p 'org-mode)
|
2011-08-16 18:02:30 +00:00
|
|
|
;; If `org-footnote-section' is defined, find it, or create it
|
|
|
|
;; at the end of the buffer.
|
2015-05-06 21:23:54 +00:00
|
|
|
(org-with-wide-buffer
|
|
|
|
(cond
|
|
|
|
((not org-footnote-section)
|
|
|
|
(org-footnote--goto-local-insertion-point))
|
|
|
|
((save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(re-search-forward
|
|
|
|
(concat "^\\*+[ \t]+" (regexp-quote org-footnote-section) "[ \t]*$")
|
|
|
|
nil t))
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(forward-line)
|
|
|
|
(unless (bolp) (insert "\n")))
|
|
|
|
(t
|
|
|
|
(goto-char (point-max))
|
|
|
|
(unless (bolp) (insert "\n"))
|
|
|
|
;; Insert new section. Separate it from the previous one
|
|
|
|
;; with a blank line, unless `org-blank-before-new-entry'
|
|
|
|
;; explicitly says no.
|
|
|
|
(when (and (cdr (assq 'heading org-blank-before-new-entry))
|
|
|
|
(zerop (save-excursion (org-back-over-empty-lines))))
|
|
|
|
(insert "\n"))
|
|
|
|
(insert "* " org-footnote-section "\n")))
|
|
|
|
(when (zerop (org-back-over-empty-lines)) (insert "\n"))
|
|
|
|
(insert "[" label "] \n")
|
|
|
|
(line-beginning-position 0)))
|
2008-12-30 22:40:14 +00:00
|
|
|
(t
|
2011-07-25 09:24:57 +00:00
|
|
|
;; In a non-Org file. Search for footnote tag, or create it if
|
2011-08-16 18:02:30 +00:00
|
|
|
;; specified (at the end of buffer, or before signature if in
|
2011-07-25 09:24:57 +00:00
|
|
|
;; Message mode). Set point after any definition already there.
|
2011-08-16 18:02:30 +00:00
|
|
|
(let ((tag (and org-footnote-tag-for-non-org-mode-files
|
|
|
|
(concat "^" (regexp-quote
|
|
|
|
org-footnote-tag-for-non-org-mode-files)
|
|
|
|
"[ \t]*$")))
|
|
|
|
(max (if (and (derived-mode-p 'message-mode)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(re-search-backward
|
|
|
|
message-signature-separator nil t))
|
|
|
|
(progn
|
|
|
|
;; Ensure one blank line separates last
|
|
|
|
;; footnote from signature.
|
|
|
|
(beginning-of-line)
|
|
|
|
(open-line 2)
|
|
|
|
(point-marker))
|
|
|
|
(point-max-marker))))
|
2011-09-28 17:07:38 +00:00
|
|
|
(set-marker-insertion-type max t)
|
2011-07-25 09:24:57 +00:00
|
|
|
(goto-char max)
|
2011-08-16 18:02:30 +00:00
|
|
|
;; Check if the footnote tag is defined but missing. In this
|
|
|
|
;; case, insert it, before any footnote or one blank line
|
|
|
|
;; after any previous text.
|
2011-09-29 13:20:34 +00:00
|
|
|
(when (and tag (not (re-search-backward tag nil t)))
|
|
|
|
(skip-chars-backward " \t\r\n")
|
|
|
|
(while (re-search-backward org-footnote-definition-re nil t))
|
|
|
|
(unless (bolp) (newline 2))
|
|
|
|
(insert org-footnote-tag-for-non-org-mode-files "\n\n"))
|
2011-08-16 18:02:30 +00:00
|
|
|
;; Remove superfluous white space and clear marker.
|
2011-09-29 13:20:34 +00:00
|
|
|
(goto-char max)
|
2011-08-16 18:02:30 +00:00
|
|
|
(skip-chars-backward " \t\r\n")
|
|
|
|
(delete-region (point) max)
|
|
|
|
(unless (bolp) (newline))
|
2015-05-06 21:23:54 +00:00
|
|
|
(set-marker max nil))
|
|
|
|
(when (zerop (org-back-over-empty-lines)) (insert "\n"))
|
|
|
|
(insert "[" label "] \n")
|
|
|
|
(backward-char)
|
|
|
|
(line-beginning-position)))))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun org-footnote-action (&optional special)
|
|
|
|
"Do the right thing for footnotes.
|
2011-06-29 13:26:22 +00:00
|
|
|
|
|
|
|
When at a footnote reference, jump to the definition.
|
|
|
|
|
|
|
|
When at a definition, jump to the references if they exist, offer
|
|
|
|
to create them otherwise.
|
|
|
|
|
|
|
|
When neither at definition or reference, create a new footnote,
|
2014-06-01 06:42:09 +00:00
|
|
|
interactively if possible.
|
2011-06-29 13:26:22 +00:00
|
|
|
|
2014-06-01 06:42:09 +00:00
|
|
|
With prefix arg SPECIAL, or when no footnote can be created,
|
|
|
|
offer additional commands in a menu."
|
2008-12-30 22:40:14 +00:00
|
|
|
(interactive "P")
|
2014-06-01 06:42:09 +00:00
|
|
|
(let* ((context (and (not special) (org-element-context)))
|
|
|
|
(type (org-element-type context)))
|
2008-12-30 22:40:14 +00:00
|
|
|
(cond
|
2015-08-14 14:22:13 +00:00
|
|
|
;; On white space after element, insert a new footnote.
|
2015-08-24 04:10:54 +00:00
|
|
|
((and context
|
|
|
|
(> (point)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (org-element-property :end context))
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
(point))))
|
2015-08-14 14:22:13 +00:00
|
|
|
(org-footnote-new))
|
2014-06-01 06:42:09 +00:00
|
|
|
((eq type 'footnote-reference)
|
|
|
|
(let ((label (org-element-property :label context)))
|
|
|
|
(cond
|
|
|
|
;; Anonymous footnote: move point at the beginning of its
|
|
|
|
;; definition.
|
|
|
|
((not label)
|
|
|
|
(goto-char (org-element-property :contents-begin context)))
|
2015-05-06 21:23:54 +00:00
|
|
|
;; Check if a definition exists: then move to it.
|
|
|
|
((let ((p (nth 1 (org-footnote-get-definition label))))
|
|
|
|
(when p (org-footnote-goto-definition label p))))
|
2014-06-01 06:42:09 +00:00
|
|
|
;; No definition exists: offer to create it.
|
|
|
|
((yes-or-no-p (format "No definition for %s. Create one? " label))
|
2015-05-06 21:23:54 +00:00
|
|
|
(let ((p (org-footnote-create-definition label)))
|
|
|
|
(or (ignore-errors (org-footnote-goto-definition label p))
|
|
|
|
;; Since definition was created outside current scope,
|
|
|
|
;; edit it remotely.
|
|
|
|
(org-edit-footnote-reference)))))))
|
2014-06-01 06:42:09 +00:00
|
|
|
((eq type 'footnote-definition)
|
|
|
|
(org-footnote-goto-previous-reference
|
|
|
|
(org-element-property :label context)))
|
2015-05-06 21:23:54 +00:00
|
|
|
((or special (not (org-footnote--allow-reference-p)))
|
|
|
|
(message "Footnotes: [s]ort | [r]enumber fn:N | [S]=r+s | \
|
|
|
|
->[n]umeric | [d]elete")
|
2014-06-01 06:42:09 +00:00
|
|
|
(let ((c (read-char-exclusive)))
|
|
|
|
(cond
|
|
|
|
((eq c ?s) (org-footnote-normalize 'sort))
|
|
|
|
((eq c ?r) (org-footnote-renumber-fn:N))
|
|
|
|
((eq c ?S)
|
|
|
|
(org-footnote-renumber-fn:N)
|
|
|
|
(org-footnote-normalize 'sort))
|
|
|
|
((eq c ?n) (org-footnote-normalize))
|
|
|
|
((eq c ?d) (org-footnote-delete))
|
|
|
|
(t (error "No such footnote command %c" c)))))
|
2008-12-30 22:40:14 +00:00
|
|
|
(t (org-footnote-new)))))
|
|
|
|
|
|
|
|
;;;###autoload
|
2013-01-27 23:02:51 +00:00
|
|
|
(defun org-footnote-normalize (&optional sort-only)
|
2008-12-30 22:40:14 +00:00
|
|
|
"Collect the footnotes in various formats and normalize them.
|
2011-04-30 11:23:21 +00:00
|
|
|
|
2009-07-03 15:56:47 +00:00
|
|
|
This finds the different sorts of footnotes allowed in Org, and
|
2013-01-27 23:02:51 +00:00
|
|
|
normalizes them to the usual [N] format.
|
2011-04-30 11:23:21 +00:00
|
|
|
|
2008-12-30 22:40:14 +00:00
|
|
|
When SORT-ONLY is set, only sort the footnote definitions into the
|
2013-01-27 23:02:51 +00:00
|
|
|
referenced sequence."
|
2008-12-30 22:40:14 +00:00
|
|
|
;; This is based on Paul's function, but rewritten.
|
2011-04-30 11:23:21 +00:00
|
|
|
;;
|
|
|
|
;; Re-create `org-with-limited-levels', but not limited to Org
|
|
|
|
;; buffers.
|
2009-06-21 06:29:35 +00:00
|
|
|
(let* ((limit-level
|
|
|
|
(and (boundp 'org-inlinetask-min-level)
|
|
|
|
org-inlinetask-min-level
|
|
|
|
(1- org-inlinetask-min-level)))
|
|
|
|
(nstars (and limit-level
|
2013-01-27 23:02:51 +00:00
|
|
|
(if org-odd-levels-only (1- (* limit-level 2))
|
2009-06-21 06:29:35 +00:00
|
|
|
limit-level)))
|
Don't use `outline-regexp' anymore.
Use `org-outline-regexp' instead or `outline-regexp'. Also use the
new defconst `org-outline-regexp-bol' to match `org-outline-regexp'
at the beginning of line.
* org.el (org-outline-regexp-bol): New defconst.
(org-outline-level, org-set-font-lock-defaults, org-cycle)
(org-overview, org-content, org-flag-drawer)
(org-first-headline-recenter, org-insert-todo-heading)
(org-map-region, org-move-subtree-down, org-paste-subtree)
(org-kill-is-subtree-p, org-context-p, org-refile)
(org-refile-new-child, org-toggle-comment, org-todo)
(org-add-planning-info, org-add-log-setup, org-scan-tags)
(org-set-tags, org-insert-property-drawer)
(org-prepare-agenda-buffers, org-preview-latex-fragment)
(org-speed-command-default-hook, org-check-for-hidden)
(org-toggle-item, org-toggle-heading)
(org-indent-line-function, org-set-autofill-regexps)
(org-fill-paragraph, org-toggle-fixed-width-section)
(org-yank-generic, org-yank-folding-would-swallow-text)
(org-first-sibling-p, org-goto-sibling)
(org-goto-first-child, org-show-entry): Use
`org-outline-regexp' and `org-outline-regexp-bol'.
* org-remember.el (org-remember-handler): Use
`org-outline-regexp-bol'.
* org-mouse.el (org-mouse-match-todo-keyword, org-mode-hook)
(org-mouse-move-tree, org-mouse-transform-to-outline): Use
`org-outline-regexp' and `org-outline-regexp-bol'.
* org-macs.el (org-with-limited-levels)
(org-get-limited-outline-regexp): Use `org-outline-regexp'.
* org-indent.el (org-indent-outline-re)
(org-indent-refresh-section, org-indent-refresh-to): Use
`org-outline-regexp' and `org-outline-regexp-bol'.
* org-html.el (org-export-as-html): Use
`org-outline-regexp-bol'.
* org-footnote.el (org-footnote-at-definition-p)
(org-footnote-normalize): Use `org-outline-regexp' and
`org-outline-regexp-bol'.
* org-exp.el (org-export-preprocess-string): Don't redefine
`outline-regexp'.
* org-docbook.el (org-export-as-docbook): Use
`org-outline-regexp-bol'.
* org-colview.el (org-columns, org-columns-compute): Use
`org-outline-regexp' and `org-outline-regexp-bol'.
* org-colview-xemacs.el (org-columns, org-columns-compute):
Use `org-outline-regexp-bol'.
* org-clock.el (org-clock-insert-selection-line)
(org-clock-in, org-clock-out, org-dblock-write:clocktable):
Use `org-outline-regexp' and `org-outline-regexp-bol'.
* org-ascii.el (org-export-as-ascii)
(org-export-ascii-push-links): Use `org-outline-regexp' and
`org-outline-regexp-bol'.
* org-archive.el (org-archive-to-archive-sibling)
(org-archive-all-done): Use `org-outline-regexp' and
`org-outline-regexp-bol'.
* org-agenda.el (org-agenda, org-search-view)
(org-agenda-list-stuck-projects, org-agenda-get-timestamps)
(org-agenda-get-progress, org-agenda-get-blocks): Use
`org-outline-regexp' and `org-outline-regexp-bol'.
2011-07-17 19:17:08 +00:00
|
|
|
(org-outline-regexp
|
2009-06-21 06:29:35 +00:00
|
|
|
(concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ ")))
|
2013-01-27 23:02:51 +00:00
|
|
|
(count 0)
|
|
|
|
ins-point ref ref-table)
|
2015-05-06 21:21:10 +00:00
|
|
|
(org-with-wide-buffer
|
|
|
|
;; 1. Find every footnote reference, extract the definition, and
|
|
|
|
;; collect that data in REF-TABLE. If SORT-ONLY is nil, also
|
|
|
|
;; normalize references.
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (setq ref (org-footnote-get-next-reference))
|
|
|
|
(let* ((lbl (car ref))
|
|
|
|
(pos (nth 1 ref))
|
|
|
|
;; When footnote isn't anonymous, check if it's label
|
|
|
|
;; (REF) is already stored in REF-TABLE. In that case,
|
|
|
|
;; extract number used to identify it (MARKER). If
|
|
|
|
;; footnote is unknown, increment the global counter
|
|
|
|
;; (COUNT) to create an unused identifier.
|
|
|
|
(a (and lbl (assoc lbl ref-table)))
|
|
|
|
(marker (or (nth 1 a) (incf count)))
|
|
|
|
;; Is the reference inline or pointing to an inline
|
|
|
|
;; footnote?
|
|
|
|
(inlinep (or (stringp (nth 3 ref)) (nth 3 a))))
|
|
|
|
;; Replace footnote reference with [MARKER]. Maybe fill
|
|
|
|
;; paragraph once done. If SORT-ONLY is non-nil, only move
|
|
|
|
;; to the end of reference found to avoid matching it twice.
|
|
|
|
(if sort-only (goto-char (nth 2 ref))
|
|
|
|
(delete-region (nth 1 ref) (nth 2 ref))
|
|
|
|
(goto-char (nth 1 ref))
|
|
|
|
(insert (format "[%d]" marker))
|
|
|
|
(and inlinep
|
|
|
|
org-footnote-fill-after-inline-note-extraction
|
|
|
|
(org-fill-paragraph)))
|
|
|
|
;; Add label (REF), identifier (MARKER), definition (DEF)
|
|
|
|
;; type (INLINEP) and position (POS) to REF-TABLE if data was
|
|
|
|
;; unknown.
|
|
|
|
(unless a
|
|
|
|
(let ((def (or (nth 3 ref) ; Inline definition.
|
|
|
|
(nth 3 (org-footnote-get-definition lbl)))))
|
|
|
|
(push (list lbl marker def
|
|
|
|
;; Reference beginning position is a marker
|
|
|
|
;; to preserve it during further buffer
|
|
|
|
;; modifications.
|
|
|
|
inlinep (copy-marker pos)) ref-table)))))
|
|
|
|
;; 2. Find and remove the footnote section, if any. Also
|
|
|
|
;; determine where footnotes shall be inserted (INS-POINT).
|
|
|
|
(cond
|
|
|
|
((and org-footnote-section (derived-mode-p 'org-mode))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(if (re-search-forward
|
|
|
|
(concat "^\\*[ \t]+" (regexp-quote org-footnote-section)
|
|
|
|
"[ \t]*$") nil t)
|
|
|
|
(delete-region (match-beginning 0) (org-end-of-subtree t t)))
|
|
|
|
;; A new footnote section is inserted by default at the end of
|
|
|
|
;; the buffer.
|
|
|
|
(goto-char (point-max))
|
|
|
|
(skip-chars-backward " \r\t\n")
|
|
|
|
(forward-line)
|
|
|
|
(unless (bolp) (newline)))
|
|
|
|
;; No footnote section set: Footnotes will be added at the end
|
|
|
|
;; of the section containing their first reference.
|
|
|
|
((derived-mode-p 'org-mode))
|
|
|
|
(t
|
|
|
|
;; Remove any left-over tag in the buffer, if one is set up.
|
|
|
|
(when org-footnote-tag-for-non-org-mode-files
|
|
|
|
(let ((tag (concat "^" (regexp-quote
|
|
|
|
org-footnote-tag-for-non-org-mode-files)
|
|
|
|
"[ \t]*$")))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (re-search-forward tag nil t)
|
|
|
|
(replace-match "")
|
|
|
|
(delete-region (point) (progn (forward-line) (point))))))
|
|
|
|
;; In Message mode, ensure footnotes are inserted before the
|
|
|
|
;; signature.
|
|
|
|
(if (and (derived-mode-p 'message-mode)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(re-search-backward message-signature-separator nil t))
|
|
|
|
(beginning-of-line)
|
|
|
|
(goto-char (point-max)))))
|
|
|
|
(setq ins-point (point-marker))
|
|
|
|
;; 3. Clean-up REF-TABLE.
|
|
|
|
(setq ref-table
|
|
|
|
(delq nil
|
|
|
|
(mapcar
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
|
|
|
;; When only sorting, ignore inline footnotes.
|
|
|
|
;; Also clear position marker.
|
|
|
|
((and sort-only (nth 3 x))
|
|
|
|
(set-marker (nth 4 x) nil) nil)
|
|
|
|
;; No definition available: provide one.
|
|
|
|
((not (nth 2 x))
|
|
|
|
(append
|
|
|
|
(list (car x) (nth 1 x)
|
|
|
|
(format "DEFINITION NOT FOUND: %s" (car x)))
|
|
|
|
(nthcdr 3 x)))
|
|
|
|
(t x)))
|
|
|
|
ref-table)))
|
|
|
|
(setq ref-table (nreverse ref-table))
|
|
|
|
;; 4. Remove left-over definitions in the buffer.
|
|
|
|
(dolist (x ref-table)
|
|
|
|
(unless (nth 3 x) (org-footnote-delete-definitions (car x))))
|
|
|
|
;; 5. Insert the footnotes again in the buffer, at the
|
|
|
|
;; appropriate spot.
|
|
|
|
(goto-char ins-point)
|
|
|
|
(cond
|
|
|
|
;; No footnote: exit.
|
|
|
|
((not ref-table))
|
|
|
|
;; Cases when footnotes should be inserted in one place.
|
|
|
|
((or (not (derived-mode-p 'org-mode)) org-footnote-section)
|
|
|
|
;; Insert again the section title, if any. Ensure that title,
|
|
|
|
;; or the subsequent footnotes, will be separated by a blank
|
|
|
|
;; lines from the rest of the document. In an Org buffer,
|
|
|
|
;; separate section with a blank line, unless explicitly stated
|
|
|
|
;; in `org-blank-before-new-entry'.
|
|
|
|
(if (not (derived-mode-p 'org-mode))
|
|
|
|
(progn (skip-chars-backward " \t\n\r")
|
|
|
|
(delete-region (point) ins-point)
|
|
|
|
(unless (bolp) (newline))
|
|
|
|
(when org-footnote-tag-for-non-org-mode-files
|
|
|
|
(insert "\n" org-footnote-tag-for-non-org-mode-files "\n")))
|
|
|
|
(when (and (cdr (assq 'heading org-blank-before-new-entry))
|
|
|
|
(zerop (save-excursion (org-back-over-empty-lines))))
|
|
|
|
(insert "\n"))
|
|
|
|
(insert "* " org-footnote-section "\n"))
|
|
|
|
(set-marker ins-point nil)
|
|
|
|
;; Insert the footnotes, separated by a blank line.
|
|
|
|
(insert
|
|
|
|
(mapconcat
|
2012-02-02 09:01:50 +00:00
|
|
|
(lambda (x)
|
2015-05-06 21:21:10 +00:00
|
|
|
;; Clean markers.
|
|
|
|
(set-marker (nth 4 x) nil)
|
|
|
|
(format "\n[%s] %s" (nth (if sort-only 0 1) x) (nth 2 x)))
|
|
|
|
ref-table "\n"))
|
|
|
|
(unless (eobp) (insert "\n\n")))
|
|
|
|
;; Each footnote definition has to be inserted at the end of the
|
|
|
|
;; section where its first reference belongs.
|
|
|
|
(t
|
|
|
|
(dolist (x ref-table)
|
|
|
|
(let ((pos (nth 4 x)))
|
|
|
|
(goto-char pos)
|
|
|
|
;; Clean marker.
|
|
|
|
(set-marker pos nil))
|
|
|
|
(org-footnote--goto-local-insertion-point)
|
|
|
|
(insert (format "\n[%s] %s\n"
|
|
|
|
(nth (if sort-only 0 1) x)
|
|
|
|
(nth 2 x)))))))))
|
|
|
|
|
|
|
|
(defun org-footnote--goto-local-insertion-point ()
|
|
|
|
"Find insertion point for footnote, just before next outline heading.
|
|
|
|
Assume insertion point is within currently accessible part of the buffer."
|
2009-07-19 07:42:22 +00:00
|
|
|
(org-with-limited-levels (outline-next-heading))
|
2015-05-06 21:21:10 +00:00
|
|
|
;; Skip file local variables. See `modify-file-local-variable'.
|
|
|
|
(when (eobp)
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
(re-search-backward "^[ \t]*# +Local Variables:"
|
|
|
|
(max (- (point-max) 3000) (point-min))
|
|
|
|
t)))
|
|
|
|
(skip-chars-backward " \t\n")
|
|
|
|
(forward-line)
|
|
|
|
(unless (bolp) (insert "\n")))
|
2008-12-30 22:40:14 +00:00
|
|
|
|
2011-04-30 11:23:21 +00:00
|
|
|
(defun org-footnote-delete-references (label)
|
|
|
|
"Delete every reference to footnote LABEL.
|
|
|
|
Return the number of footnotes removed."
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(let (ref (nref 0))
|
|
|
|
(while (setq ref (org-footnote-get-next-reference label))
|
|
|
|
(goto-char (nth 1 ref))
|
|
|
|
(delete-region (nth 1 ref) (nth 2 ref))
|
|
|
|
(incf nref))
|
|
|
|
nref)))
|
|
|
|
|
|
|
|
(defun org-footnote-delete-definitions (label)
|
|
|
|
"Delete every definition of the footnote LABEL.
|
|
|
|
Return the number of footnotes removed."
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
|
|
|
(let ((def-re (concat "^\\[" (regexp-quote label) "\\]"))
|
|
|
|
(ndef 0))
|
|
|
|
(while (re-search-forward def-re nil t)
|
|
|
|
(let ((full-def (org-footnote-at-definition-p)))
|
2012-03-24 19:34:41 +00:00
|
|
|
(when full-def
|
2012-04-08 10:01:57 +00:00
|
|
|
;; Remove the footnote, and all blank lines before it.
|
|
|
|
(goto-char (nth 1 full-def))
|
|
|
|
(skip-chars-backward " \r\t\n")
|
|
|
|
(unless (bolp) (forward-line))
|
|
|
|
(delete-region (point) (nth 2 full-def))
|
2012-03-24 19:34:41 +00:00
|
|
|
(incf ndef))))
|
2011-04-30 11:23:21 +00:00
|
|
|
ndef)))
|
|
|
|
|
2008-12-30 22:40:14 +00:00
|
|
|
(defun org-footnote-delete (&optional label)
|
|
|
|
"Delete the footnote at point.
|
|
|
|
This will remove the definition (even multiple definitions if they exist)
|
2011-04-29 13:46:25 +00:00
|
|
|
and all references of a footnote label.
|
|
|
|
|
|
|
|
If LABEL is non-nil, delete that footnote instead."
|
2008-12-30 22:40:14 +00:00
|
|
|
(catch 'done
|
2011-04-29 13:46:25 +00:00
|
|
|
(let* ((nref 0) (ndef 0) x
|
|
|
|
;; 1. Determine LABEL of footnote at point.
|
|
|
|
(label (cond
|
|
|
|
;; LABEL is provided as argument.
|
|
|
|
(label)
|
2012-08-11 17:10:44 +00:00
|
|
|
;; Footnote reference at point. If the footnote is
|
2011-04-29 13:46:25 +00:00
|
|
|
;; anonymous, delete it and exit instead.
|
|
|
|
((setq x (org-footnote-at-reference-p))
|
|
|
|
(or (car x)
|
|
|
|
(progn
|
|
|
|
(delete-region (nth 1 x) (nth 2 x))
|
|
|
|
(message "Anonymous footnote removed")
|
|
|
|
(throw 'done t))))
|
|
|
|
;; Footnote definition at point.
|
|
|
|
((setq x (org-footnote-at-definition-p))
|
|
|
|
(car x))
|
|
|
|
(t (error "Don't know which footnote to remove")))))
|
2011-04-30 11:23:21 +00:00
|
|
|
;; 2. Now that LABEL is non-nil, find every reference and every
|
|
|
|
;; definition, and delete them.
|
|
|
|
(setq nref (org-footnote-delete-references label)
|
|
|
|
ndef (org-footnote-delete-definitions label))
|
|
|
|
;; 3. Verify consistency of footnotes and notify user.
|
2009-07-03 15:56:47 +00:00
|
|
|
(org-footnote-auto-adjust-maybe)
|
2008-12-30 22:40:14 +00:00
|
|
|
(message "%d definition(s) of and %d reference(s) of footnote %s removed"
|
|
|
|
ndef nref label))))
|
|
|
|
|
2009-07-01 08:37:03 +00:00
|
|
|
(defun org-footnote-renumber-fn:N ()
|
|
|
|
"Renumber the simple footnotes like fn:17 into a sequence in the document."
|
|
|
|
(interactive)
|
2011-09-29 20:34:15 +00:00
|
|
|
(let (map (n 0))
|
|
|
|
(org-with-wide-buffer
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (re-search-forward "\\[fn:\\([0-9]+\\)[]:]" nil t)
|
2011-09-29 20:53:45 +00:00
|
|
|
(save-excursion
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
;; Ensure match is a footnote reference or definition.
|
2011-10-01 06:57:33 +00:00
|
|
|
(when (save-match-data (if (bolp)
|
|
|
|
(org-footnote-at-definition-p)
|
|
|
|
(org-footnote-at-reference-p)))
|
2011-09-29 20:53:45 +00:00
|
|
|
(let ((new-val (or (cdr (assoc (match-string 1) map))
|
|
|
|
(number-to-string (incf n)))))
|
|
|
|
(unless (assoc (match-string 1) map)
|
|
|
|
(push (cons (match-string 1) new-val) map))
|
|
|
|
(replace-match new-val nil nil nil 1))))))))
|
2009-07-01 08:37:03 +00:00
|
|
|
|
2009-07-03 15:56:47 +00:00
|
|
|
(defun org-footnote-auto-adjust-maybe ()
|
|
|
|
"Renumber and/or sort footnotes according to user settings."
|
|
|
|
(when (memq org-footnote-auto-adjust '(t renumber))
|
|
|
|
(org-footnote-renumber-fn:N))
|
|
|
|
(when (memq org-footnote-auto-adjust '(t sort))
|
2011-04-29 13:46:25 +00:00
|
|
|
(let ((label (car (org-footnote-at-definition-p))))
|
2009-07-03 15:56:47 +00:00
|
|
|
(org-footnote-normalize 'sort)
|
|
|
|
(when label
|
|
|
|
(goto-char (point-min))
|
|
|
|
(and (re-search-forward (concat "^\\[" (regexp-quote label) "\\]")
|
|
|
|
nil t)
|
2009-08-03 15:30:30 +00:00
|
|
|
(progn (insert " ")
|
2009-07-03 15:56:47 +00:00
|
|
|
(just-one-space)))))))
|
|
|
|
|
2008-12-30 22:40:14 +00:00
|
|
|
(provide 'org-footnote)
|
|
|
|
|
2012-10-02 06:50:46 +00:00
|
|
|
;; Local variables:
|
|
|
|
;; generated-autoload-file: "org-loaddefs.el"
|
|
|
|
;; End:
|
|
|
|
|
2009-01-03 08:03:04 +00:00
|
|
|
;;; org-footnote.el ends here
|