2013-05-23 15:10:43 -04:00
|
|
|
|
;;; ox-bibtex.el --- Export bibtex fragments
|
|
|
|
|
|
2014-01-07 08:18:17 -05:00
|
|
|
|
;; Copyright (C) 2009-2014 Taru Karttunen
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
|
|
|
|
;; Author: Taru Karttunen <taruti@taruti.net>
|
|
|
|
|
;; Nicolas Goaziou <n dot goaziou at gmail dot com>
|
|
|
|
|
;; This file is not currently part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; This program is free software; you can redistribute it and/or
|
|
|
|
|
;; modify it under the terms of the GNU General Public License as
|
|
|
|
|
;; published by the Free Software Foundation; either version 2, or (at
|
|
|
|
|
;; your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; This program is distributed in the hope that it will be useful, but
|
|
|
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
;; General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with this program ; see the file COPYING. If not, write to
|
|
|
|
|
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;
|
2013-12-02 14:24:58 -05:00
|
|
|
|
;; This is an utility to handle BibTeX export to LaTeX, html and ascii
|
|
|
|
|
;; exports. For HTML and ascii it uses the bibtex2html software from:
|
2013-05-23 15:10:43 -04:00
|
|
|
|
;;
|
|
|
|
|
;; http://www.lri.fr/~filliatr/bibtex2html/
|
|
|
|
|
;;
|
2013-12-02 14:24:58 -05:00
|
|
|
|
;; For ascii it uses the pandoc software from:
|
|
|
|
|
;;
|
|
|
|
|
;; http://johnmacfarlane.net/pandoc/
|
|
|
|
|
;;
|
2013-07-08 09:55:12 -04:00
|
|
|
|
;; It also introduces "cite" syntax for Org links.
|
|
|
|
|
;;
|
2013-05-23 15:10:43 -04:00
|
|
|
|
;; The usage is as follows:
|
|
|
|
|
;;
|
|
|
|
|
;; #+BIBLIOGRAPHY: bibfilebasename stylename optional-options
|
|
|
|
|
;;
|
|
|
|
|
;; e.g. given foo.bib and using style plain:
|
|
|
|
|
;;
|
|
|
|
|
;; #+BIBLIOGRAPHY: foo plain option:-d
|
|
|
|
|
;;
|
2013-12-21 10:13:56 -05:00
|
|
|
|
;; "stylename" can also be "nil", in which case no style will be used.
|
|
|
|
|
;;
|
2013-05-23 15:10:43 -04:00
|
|
|
|
;; Optional options are of the form:
|
|
|
|
|
;;
|
|
|
|
|
;; option:-foobar pass '-foobar' to bibtex2html
|
|
|
|
|
;;
|
|
|
|
|
;; e.g.,
|
|
|
|
|
;;
|
|
|
|
|
;; option:-d sort by date
|
|
|
|
|
;; option:-a sort as BibTeX (usually by author) *default*
|
|
|
|
|
;; option:-u unsorted i.e. same order as in .bib file
|
|
|
|
|
;; option:-r reverse the sort
|
|
|
|
|
;;
|
|
|
|
|
;; See the bibtex2html man page for more. Multiple options can be
|
|
|
|
|
;; combined like:
|
|
|
|
|
;;
|
|
|
|
|
;; option:-d option:-r
|
|
|
|
|
;;
|
|
|
|
|
;; Limiting to only the entries cited in the document:
|
|
|
|
|
;;
|
|
|
|
|
;; limit:t
|
|
|
|
|
;;
|
|
|
|
|
;; For LaTeX export this simply inserts the lines
|
|
|
|
|
;;
|
|
|
|
|
;; \bibliographystyle{plain}
|
|
|
|
|
;; \bibliography{foo}
|
|
|
|
|
;;
|
|
|
|
|
;; into the TeX file when exporting.
|
|
|
|
|
;;
|
|
|
|
|
;; For HTML export it:
|
2013-07-08 09:55:12 -04:00
|
|
|
|
;; 1) converts all \cite{foo} and [[cite:foo]] to links to the
|
|
|
|
|
;; bibliography,
|
2013-05-23 15:10:43 -04:00
|
|
|
|
;; 2) creates a foo.html and foo_bib.html,
|
|
|
|
|
;; 3) includes the contents of foo.html in the exported HTML file.
|
2013-07-08 09:55:12 -04:00
|
|
|
|
;;
|
2013-12-02 14:24:58 -05:00
|
|
|
|
;; For ascii export it:
|
|
|
|
|
;; 1) converts all \cite{foo} and [[cite:foo]] to links to the
|
|
|
|
|
;; bibliography,
|
|
|
|
|
;; 2) creates a foo.txt and foo_bib.html,
|
|
|
|
|
;; 3) includes the contents of foo.txt in the exported ascii file.
|
|
|
|
|
;;
|
2013-07-08 09:55:12 -04:00
|
|
|
|
;; For LaTeX export it:
|
|
|
|
|
;; 1) converts all [[cite:foo]] to \cite{foo}.
|
|
|
|
|
|
|
|
|
|
;; Initialization
|
|
|
|
|
|
|
|
|
|
(eval-when-compile (require 'cl))
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
|
|
|
|
;;; Internal Functions
|
|
|
|
|
|
|
|
|
|
(defun org-bibtex-get-file (keyword)
|
|
|
|
|
"Return bibliography file as a string.
|
|
|
|
|
KEYWORD is a \"BIBLIOGRAPHY\" keyword. If no file is found,
|
|
|
|
|
return nil instead."
|
|
|
|
|
(let ((value (org-element-property :value keyword)))
|
|
|
|
|
(and value
|
|
|
|
|
(string-match "\\(\\S-+\\)[ \t]+\\(\\S-+\\)\\(.*\\)" value)
|
|
|
|
|
(match-string 1 value))))
|
|
|
|
|
|
|
|
|
|
(defun org-bibtex-get-style (keyword)
|
|
|
|
|
"Return bibliography style as a string.
|
|
|
|
|
KEYWORD is a \"BIBLIOGRAPHY\" keyword. If no style is found,
|
|
|
|
|
return nil instead."
|
|
|
|
|
(let ((value (org-element-property :value keyword)))
|
|
|
|
|
(and value
|
|
|
|
|
(string-match "\\(\\S-+\\)[ \t]+\\(\\S-+\\)\\(.*\\)" value)
|
|
|
|
|
(match-string 2 value))))
|
|
|
|
|
|
|
|
|
|
(defun org-bibtex-get-arguments (keyword)
|
|
|
|
|
"Return \"bibtex2html\" arguments specified by the user.
|
|
|
|
|
KEYWORD is a \"BIBLIOGRAPHY\" keyword. Return value is a plist
|
2013-12-01 05:51:55 -05:00
|
|
|
|
containing `:options' and `:limit' properties. The former
|
|
|
|
|
contains a list of strings to be passed as options to
|
|
|
|
|
\"bibtex2html\" process. The latter contains a boolean."
|
2013-05-23 15:10:43 -04:00
|
|
|
|
(let ((value (org-element-property :value keyword)))
|
|
|
|
|
(and value
|
|
|
|
|
(string-match "\\(\\S-+\\)[ \t]+\\(\\S-+\\)\\(.*\\)" value)
|
|
|
|
|
(let (options limit)
|
|
|
|
|
(dolist (arg (org-split-string (match-string 3 value))
|
|
|
|
|
;; Return value.
|
|
|
|
|
(list :options (nreverse options) :limit limit))
|
|
|
|
|
(let* ((s (split-string arg ":"))
|
|
|
|
|
(key (car s))
|
|
|
|
|
(value (nth 1 s)))
|
|
|
|
|
(cond ((equal "limit" key)
|
|
|
|
|
(setq limit (not (equal "nil" value))))
|
|
|
|
|
((equal "option" key) (push value options)))))))))
|
|
|
|
|
|
2013-07-08 09:55:12 -04:00
|
|
|
|
(defun org-bibtex-citation-p (object)
|
|
|
|
|
"Non-nil when OBJECT is a citation."
|
|
|
|
|
(case (org-element-type object)
|
|
|
|
|
(link (equal (org-element-property :type object) "cite"))
|
|
|
|
|
(latex-fragment
|
|
|
|
|
(string-match "\\`\\\\cite{" (org-element-property :value object)))))
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
|
|
|
|
(defun org-bibtex-get-citation-key (citation)
|
|
|
|
|
"Return key for a given citation, as a string.
|
2013-07-08 09:55:12 -04:00
|
|
|
|
CITATION is a `latex-fragment' or `link' type object satisfying
|
|
|
|
|
to `org-bibtex-citation-p' predicate."
|
|
|
|
|
(if (eq (org-element-type citation) 'link)
|
|
|
|
|
(org-element-property :path citation)
|
|
|
|
|
(let ((value (org-element-property :value citation)))
|
|
|
|
|
(and (string-match "\\`\\\\cite{" value)
|
|
|
|
|
(substring value (match-end 0) -1)))))
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
2014-06-25 12:42:14 -04:00
|
|
|
|
|
|
|
|
|
;;; Follow cite: links
|
|
|
|
|
|
|
|
|
|
(defun org-bibtex-file nil "Org-mode file of bibtex entries.")
|
|
|
|
|
|
|
|
|
|
(defun org-bibtex-goto-citation (&optional citation)
|
|
|
|
|
"Visit a citation given its ID."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((citation (or citation
|
|
|
|
|
(org-icompleting-read "Citation: "
|
|
|
|
|
(obe-citations)))))
|
|
|
|
|
(find-file (or org-bibtex-file
|
|
|
|
|
(error "`org-bibtex-file' has not been configured")))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (re-search-forward (format " :CUSTOM_ID: %s" citation) nil t)
|
|
|
|
|
(outline-previous-visible-heading 1)
|
|
|
|
|
t)))
|
|
|
|
|
|
|
|
|
|
(let ((jump-fn (car (org-remove-if-not #'fboundp '(ebib org-bibtex-goto-citation)))))
|
|
|
|
|
(org-add-link-type "cite" jump-fn))
|
|
|
|
|
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
2013-11-30 07:51:58 -05:00
|
|
|
|
|
|
|
|
|
;;; Filters
|
|
|
|
|
|
|
|
|
|
(defun org-bibtex-process-bib-files (tree backend info)
|
|
|
|
|
"Send each bibliography in parse tree to \"bibtex2html\" process.
|
|
|
|
|
Return new parse tree."
|
2013-12-03 14:21:09 -05:00
|
|
|
|
(when (org-export-derived-backend-p backend 'ascii 'html)
|
2013-11-30 07:51:58 -05:00
|
|
|
|
;; Initialize dynamically scoped variables. The first one
|
|
|
|
|
;; contain an alist between keyword objects and their HTML
|
|
|
|
|
;; translation. The second one will contain an alist between
|
|
|
|
|
;; citation keys and names in the output (according to style).
|
|
|
|
|
(setq org-bibtex-html-entries-alist nil
|
|
|
|
|
org-bibtex-html-keywords-alist nil)
|
|
|
|
|
(org-element-map tree 'keyword
|
|
|
|
|
(lambda (keyword)
|
|
|
|
|
(when (equal (org-element-property :key keyword) "BIBLIOGRAPHY")
|
|
|
|
|
(let ((arguments (org-bibtex-get-arguments keyword))
|
|
|
|
|
(file (org-bibtex-get-file keyword))
|
|
|
|
|
temp-file)
|
|
|
|
|
;; limit is set: collect citations throughout the document
|
|
|
|
|
;; in TEMP-FILE and pass it to "bibtex2html" as "-citefile"
|
|
|
|
|
;; argument.
|
|
|
|
|
(when (plist-get arguments :limit)
|
|
|
|
|
(let ((citations
|
|
|
|
|
(org-element-map tree '(latex-fragment link)
|
|
|
|
|
(lambda (object)
|
|
|
|
|
(and (org-bibtex-citation-p object)
|
|
|
|
|
(org-bibtex-get-citation-key object))))))
|
|
|
|
|
(with-temp-file (setq temp-file (make-temp-file "ox-bibtex"))
|
|
|
|
|
(insert (mapconcat 'identity citations "\n")))
|
|
|
|
|
(setq arguments
|
|
|
|
|
(plist-put arguments
|
|
|
|
|
:options
|
|
|
|
|
(append (plist-get arguments :options)
|
|
|
|
|
(list "-citefile" temp-file))))))
|
|
|
|
|
;; Call "bibtex2html" on specified file.
|
2013-12-21 10:13:56 -05:00
|
|
|
|
(unless (eq 0 (apply
|
|
|
|
|
'call-process
|
|
|
|
|
(append '("bibtex2html" nil nil nil)
|
|
|
|
|
'("-a" "-nodoc" "-noheader" "-nofooter")
|
|
|
|
|
(let ((style
|
|
|
|
|
(org-not-nil
|
|
|
|
|
(org-bibtex-get-style keyword))))
|
|
|
|
|
(and style (list "--style" style)))
|
|
|
|
|
(plist-get arguments :options)
|
|
|
|
|
(list (concat file ".bib")))))
|
2013-11-30 07:51:58 -05:00
|
|
|
|
(error "Executing bibtex2html failed"))
|
|
|
|
|
(and temp-file (delete-file temp-file))
|
2013-12-02 14:24:58 -05:00
|
|
|
|
;; Open produced HTML file, and collect Bibtex key names
|
2013-11-30 07:51:58 -05:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents (concat file ".html"))
|
|
|
|
|
;; Update `org-bibtex-html-entries-alist'.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"a name=\"\\([-_a-zA-Z0-9:]+\\)\">\\(\\w+\\)" nil t)
|
|
|
|
|
(push (cons (match-string 1) (match-string 2))
|
2013-12-02 14:24:58 -05:00
|
|
|
|
org-bibtex-html-entries-alist)))
|
|
|
|
|
;; Open produced HTML file, wrap references within a block and
|
|
|
|
|
;; return it.
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(cond
|
|
|
|
|
((org-export-derived-backend-p backend 'html)
|
2014-04-17 11:25:03 -04:00
|
|
|
|
(insert (format "<div id=\"bibliography\">\n<h2>%s</h2>\n"
|
2014-04-17 11:35:48 -04:00
|
|
|
|
(org-export-translate "References" :html info)))
|
2013-12-02 14:24:58 -05:00
|
|
|
|
(insert-file-contents (concat file ".html"))
|
|
|
|
|
(insert "\n</div>"))
|
|
|
|
|
((org-export-derived-backend-p backend 'ascii)
|
|
|
|
|
;; convert HTML references to text w/pandoc
|
|
|
|
|
(unless (eq 0 (call-process "pandoc" nil nil nil
|
|
|
|
|
(concat file ".html")
|
|
|
|
|
"-o"
|
|
|
|
|
(concat file ".txt")))
|
|
|
|
|
(error "Executing pandoc failed"))
|
2014-04-17 11:35:48 -04:00
|
|
|
|
(insert
|
|
|
|
|
(format
|
|
|
|
|
"%s\n==========\n\n"
|
|
|
|
|
(org-export-translate
|
|
|
|
|
"References"
|
|
|
|
|
(intern (format ":%s" (plist-get info :ascii-charset)))
|
|
|
|
|
info)))
|
2013-12-02 14:24:58 -05:00
|
|
|
|
(insert-file-contents (concat file ".txt"))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"\\[ \\[bib\\][^ ]+ \\(\\]\\||[\n\r]\\)" nil t)
|
|
|
|
|
(replace-match ""))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "\\( \\]\\| \\]\\| |\\)" nil t)
|
|
|
|
|
(replace-match ""))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "[\n\r]\\([\n\r][\n\r]\\)" nil t)
|
|
|
|
|
(replace-match "\\1"))))
|
|
|
|
|
;; Update `org-bibtex-html-keywords-alist'.
|
|
|
|
|
(push (cons keyword (buffer-string))
|
|
|
|
|
org-bibtex-html-keywords-alist)))))))
|
2013-11-30 07:51:58 -05:00
|
|
|
|
;; Return parse tree unchanged.
|
|
|
|
|
tree)
|
|
|
|
|
|
2013-12-01 05:51:55 -05:00
|
|
|
|
(defun org-bibtex-merge-contiguous-citations (tree backend info)
|
|
|
|
|
"Merge all contiguous citation in parse tree.
|
|
|
|
|
As a side effect, this filter will also turn all \"cite\" links
|
2014-06-25 07:13:11 -04:00
|
|
|
|
into \"\\cite{...}\" LaTeX fragments and will extract options.
|
|
|
|
|
Cite options are placed into square brackets at the beginning of
|
|
|
|
|
the \"\\cite\" command for the LaTeX backend, and are removed for
|
|
|
|
|
the HTML and ASCII backends."
|
2013-12-02 14:24:58 -05:00
|
|
|
|
(when (org-export-derived-backend-p backend 'html 'latex 'ascii)
|
2013-12-01 05:51:55 -05:00
|
|
|
|
(org-element-map tree '(link latex-fragment)
|
|
|
|
|
(lambda (object)
|
|
|
|
|
(when (org-bibtex-citation-p object)
|
|
|
|
|
(let ((new-citation (list 'latex-fragment
|
|
|
|
|
(list :value ""
|
|
|
|
|
:post-blank (org-element-property
|
2014-06-05 14:01:24 -04:00
|
|
|
|
:post-blank object))))
|
|
|
|
|
option)
|
2013-12-01 05:51:55 -05:00
|
|
|
|
;; Insert NEW-CITATION right before OBJECT.
|
|
|
|
|
(org-element-insert-before new-citation object)
|
|
|
|
|
;; Remove all subsequent contiguous citations from parse
|
|
|
|
|
;; tree, keeping only their citation key.
|
|
|
|
|
(let ((keys (list (org-bibtex-get-citation-key object)))
|
|
|
|
|
next)
|
|
|
|
|
(while (and (setq next (org-export-get-next-element object info))
|
|
|
|
|
(or (and (stringp next)
|
|
|
|
|
(not (org-string-match-p "\\S-" next)))
|
|
|
|
|
(org-bibtex-citation-p next)))
|
|
|
|
|
(unless (stringp next)
|
|
|
|
|
(push (org-bibtex-get-citation-key next) keys))
|
|
|
|
|
(org-element-extract-element object)
|
|
|
|
|
(setq object next))
|
2014-06-05 14:01:24 -04:00
|
|
|
|
;; Find any options in keys, e.g., "(Chapter 2)key" has
|
|
|
|
|
;; the option "Chapter 2".
|
|
|
|
|
(setq keys
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (k)
|
|
|
|
|
(if (string-match "^(\\([^)]\+\\))\\(.*\\)" k)
|
|
|
|
|
(progn
|
2014-06-25 07:13:11 -04:00
|
|
|
|
(when (org-export-derived-backend-p backend 'latex)
|
|
|
|
|
(setq option (format "[%s]" (match-string 1 k))))
|
2014-06-05 14:01:24 -04:00
|
|
|
|
(match-string 2 k))
|
|
|
|
|
k))
|
|
|
|
|
keys))
|
2013-12-01 05:51:55 -05:00
|
|
|
|
(org-element-extract-element object)
|
|
|
|
|
;; Eventually merge all keys within NEW-CITATION. Also
|
|
|
|
|
;; ensure NEW-CITATION has the same :post-blank property
|
|
|
|
|
;; as the last citation removed.
|
|
|
|
|
(org-element-put-property
|
|
|
|
|
new-citation
|
|
|
|
|
:post-blank (org-element-property :post-blank object))
|
|
|
|
|
(org-element-put-property
|
|
|
|
|
new-citation
|
2014-06-05 14:01:24 -04:00
|
|
|
|
:value (format "\\cite%s{%s}"
|
|
|
|
|
(or option "")
|
2013-12-01 05:51:55 -05:00
|
|
|
|
(mapconcat 'identity (nreverse keys) ",")))))))))
|
|
|
|
|
tree)
|
|
|
|
|
|
2013-11-30 07:51:58 -05:00
|
|
|
|
(eval-after-load 'ox
|
2013-12-01 05:51:55 -05:00
|
|
|
|
'(progn (add-to-list 'org-export-filter-parse-tree-functions
|
|
|
|
|
'org-bibtex-process-bib-files)
|
|
|
|
|
(add-to-list 'org-export-filter-parse-tree-functions
|
|
|
|
|
'org-bibtex-merge-contiguous-citations)))
|
2013-11-30 07:51:58 -05:00
|
|
|
|
|
|
|
|
|
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
|
|
|
|
;;; LaTeX Part
|
|
|
|
|
|
|
|
|
|
(defadvice org-latex-keyword (around bibtex-keyword)
|
|
|
|
|
"Translate \"BIBLIOGRAPHY\" keywords into LaTeX syntax.
|
|
|
|
|
Fallback to `latex' back-end for other keywords."
|
|
|
|
|
(let ((keyword (ad-get-arg 0)))
|
|
|
|
|
(if (not (equal (org-element-property :key keyword) "BIBLIOGRAPHY"))
|
|
|
|
|
ad-do-it
|
|
|
|
|
(let ((file (org-bibtex-get-file keyword))
|
2013-12-21 10:13:56 -05:00
|
|
|
|
(style (org-not-nil (org-bibtex-get-style keyword))))
|
2013-05-23 15:10:43 -04:00
|
|
|
|
(setq ad-return-value
|
|
|
|
|
(when file
|
|
|
|
|
(concat (and style (format "\\bibliographystyle{%s}\n" style))
|
|
|
|
|
(format "\\bibliography{%s}" file))))))))
|
|
|
|
|
|
|
|
|
|
(ad-activate 'org-latex-keyword)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; HTML Part
|
|
|
|
|
|
2013-06-02 03:33:57 -04:00
|
|
|
|
(defvar org-bibtex-html-entries-alist nil) ; Dynamically scoped.
|
|
|
|
|
(defvar org-bibtex-html-keywords-alist nil) ; Dynamically scoped.
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;; Advices
|
|
|
|
|
|
|
|
|
|
(defadvice org-html-keyword (around bibtex-keyword)
|
|
|
|
|
"Translate \"BIBLIOGRAPHY\" keywords into HTML syntax.
|
|
|
|
|
Fallback to `html' back-end for other keywords."
|
|
|
|
|
(let ((keyword (ad-get-arg 0)))
|
|
|
|
|
(if (not (equal (org-element-property :key keyword) "BIBLIOGRAPHY"))
|
|
|
|
|
ad-do-it
|
|
|
|
|
(setq ad-return-value
|
|
|
|
|
(cdr (assq keyword org-bibtex-html-keywords-alist))))))
|
|
|
|
|
|
|
|
|
|
(defadvice org-html-latex-fragment (around bibtex-citation)
|
|
|
|
|
"Translate \"\\cite\" LaTeX fragments into HTML syntax.
|
|
|
|
|
Fallback to `html' back-end for other keywords."
|
|
|
|
|
(let ((fragment (ad-get-arg 0)))
|
|
|
|
|
(if (not (org-bibtex-citation-p fragment)) ad-do-it
|
|
|
|
|
(setq ad-return-value
|
2013-12-01 05:51:55 -05:00
|
|
|
|
(format "[%s]"
|
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (key)
|
|
|
|
|
(format "<a href=\"#%s\">%s</a>"
|
|
|
|
|
key
|
|
|
|
|
(or (cdr (assoc key org-bibtex-html-entries-alist))
|
|
|
|
|
key)))
|
|
|
|
|
(org-split-string
|
|
|
|
|
(org-bibtex-get-citation-key fragment) ",") ","))))))
|
2013-07-08 09:55:12 -04:00
|
|
|
|
|
2013-05-23 15:10:43 -04:00
|
|
|
|
(ad-activate 'org-html-keyword)
|
|
|
|
|
(ad-activate 'org-html-latex-fragment)
|
|
|
|
|
|
2013-12-02 14:24:58 -05:00
|
|
|
|
|
|
|
|
|
;;; Ascii Part
|
|
|
|
|
(defadvice org-ascii-keyword (around bibtex-keyword)
|
|
|
|
|
"Translate \"BIBLIOGRAPHY\" keywords into ascii syntax.
|
|
|
|
|
Fallback to `ascii' back-end for other keywords."
|
|
|
|
|
(let ((keyword (ad-get-arg 0)))
|
|
|
|
|
(if (not (equal (org-element-property :key keyword) "BIBLIOGRAPHY"))
|
|
|
|
|
ad-do-it
|
|
|
|
|
(setq ad-return-value
|
|
|
|
|
(cdr (assq keyword org-bibtex-html-keywords-alist))))))
|
|
|
|
|
|
|
|
|
|
(defadvice org-ascii-latex-fragment (around bibtex-citation)
|
|
|
|
|
"Translate \"\\cite\" LaTeX fragments into ascii syntax.
|
|
|
|
|
Fallback to `ascii' back-end for other keywords."
|
|
|
|
|
(let ((fragment (ad-get-arg 0)))
|
|
|
|
|
(if (not (org-bibtex-citation-p fragment)) ad-do-it
|
|
|
|
|
(setq ad-return-value
|
|
|
|
|
(format "[%s]"
|
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (key)
|
|
|
|
|
(or (cdr (assoc key org-bibtex-html-entries-alist))
|
|
|
|
|
key))
|
|
|
|
|
(org-split-string
|
|
|
|
|
(org-bibtex-get-citation-key fragment) ",") ","))))))
|
|
|
|
|
|
|
|
|
|
(ad-activate 'org-ascii-keyword)
|
|
|
|
|
(ad-activate 'org-ascii-latex-fragment)
|
2013-05-23 15:10:43 -04:00
|
|
|
|
|
|
|
|
|
(provide 'ox-bibtex)
|
|
|
|
|
|
|
|
|
|
;;; ox-bibtex.el ends here
|