Parcourir la source

Footnotes: Introduce STARTUP options for footnotes

New STARTUP options fninline and nofninline can be used to configure
the option `org-footnote-define-inline'.
Carsten Dominik il y a 16 ans
Parent
commit
70930f09ba
3 fichiers modifiés avec 20 ajouts et 12 suppressions
  1. 2 0
      lisp/org-exp.el
  2. 16 12
      lisp/org-export-latex.el
  3. 2 0
      lisp/org.el

+ 2 - 0
lisp/org-exp.el

@@ -2475,6 +2475,7 @@ underlined headlines.  The default is 3."
 		  :drawers (plist-get opt-plist :drawers)
 		  :tags (plist-get opt-plist :tags)
 		  :priority (plist-get opt-plist :priority)
+		  :footnotes (plist-get opt-plist :footnotes)
 		  :todo-keywords (plist-get opt-plist :todo-keywords)
 		  :verbatim-multiline t
 		  :select-tags (plist-get opt-plist :select-tags)
@@ -3167,6 +3168,7 @@ PUB-DIR is set, use this as the publishing directory."
 	    :todo-keywords (plist-get opt-plist :todo-keywords)
 	    :tags (plist-get opt-plist :tags)
 	    :priority (plist-get opt-plist :priority)
+	    :footnotes (plist-get opt-plist :footnotes)
 	    :archived-trees
 	    (plist-get opt-plist :archived-trees)
 	    :select-tags (plist-get opt-plist :select-tags)

+ 16 - 12
lisp/org-export-latex.el

@@ -430,6 +430,7 @@ when PUB-DIR is set, use this as the publishing directory."
 	   :comments nil
 	   :tags (plist-get opt-plist :tags)
 	   :priority (plist-get opt-plist :priority)
+	   :footnotes (plist-get opt-plist :footnotes)
 	   :todo-keywords (plist-get opt-plist :todo-keywords)
 	   :add-text (if (eq to-buffer 'string) nil text)
 	   :skip-before-1st-heading skip
@@ -1308,7 +1309,7 @@ If TIMESTAMPS, convert timestamps, otherwise delete them."
   ;; FIXME: don't protect footnotes from conversion
   (when (plist-get org-export-latex-options-plist :footnotes)
     (goto-char (point-min))
-    (while (re-search-forward "\\[[0-9]+\\]" nil t)
+    (while (re-search-forward "\\[\\([0-9]+\\)\\]" nil t)
       (when (save-match-data
 	      (save-excursion (beginning-of-line)
 			      (looking-at "[^:|#]")))
@@ -1317,7 +1318,9 @@ If TIMESTAMPS, convert timestamps, otherwise delete them."
 	      (foot-prefix (match-string 0))
 	      footnote footnote-rpl)
 	  (save-excursion
-	    (when (search-forward foot-prefix nil t)
+	    (if (not (re-search-forward (concat "^" (regexp-quote foot-prefix))
+					nil t))
+		(replace-match "$^{\\1}$")
 	      (replace-match "")
 	      (let ((end (save-excursion
 			   (if (re-search-forward "^$\\|^#.*$\\|\\[[0-9]+\\]" nil t)
@@ -1326,16 +1329,17 @@ If TIMESTAMPS, convert timestamps, otherwise delete them."
 				       " ")) ; prevent last } being part of a link
 		(delete-region (point) end))
 	      (goto-char foot-beg)
-	    (delete-region foot-beg foot-end)
-	    (unless (null footnote)
-	      (setq footnote-rpl (format "\\footnote{%s}" footnote))
-	      (add-text-properties 0 10 '(org-protected t) footnote-rpl)
-	      (add-text-properties (1- (length footnote-rpl))
-				   (length footnote-rpl)
-				   '(org-protected t) footnote-rpl)
-	      (insert footnote-rpl)))))))
-
-    ;; Replace footnote section tag for LaTeX
+	      (delete-region foot-beg foot-end)
+	      (unless (null footnote)
+		(setq footnote-rpl (format "\\footnote{%s}" footnote))
+		(add-text-properties 0 10 '(org-protected t) footnote-rpl)
+		(add-text-properties (1- (length footnote-rpl))
+				     (length footnote-rpl)
+				     '(org-protected t) footnote-rpl)
+		(insert footnote-rpl)))
+	    ))))
+
+    ;; Remove footnote section tag for LaTeX
     (goto-char (point-min))
     (while (re-search-forward
 	    (concat "^" footnote-section-tag-regexp) nil t)

+ 2 - 0
lisp/org.el

@@ -2993,6 +2993,8 @@ After a match, the following groups carry important information:
     ("logrepeat" org-log-repeat state)
     ("lognoterepeat" org-log-repeat note)
     ("nologrepeat" org-log-repeat nil)
+    ("fninline" org-footnote-define-inline t)
+    ("nofninline" org-footnote-define-inline nil)
     ("constcgs" constants-unit-system cgs)
     ("constSI" constants-unit-system SI))
   "Variable associated with STARTUP options for org-mode.