ox-bibtex: Merge consecutive citations

* contrib/lisp/ox-bibtex.el (org-bibtex-merge-contiguous-citations):
  New function.
(org-latex-link, org-html-link): Remove advices.
This commit is contained in:
Nicolas Goaziou 2013-12-01 11:51:55 +01:00
parent cccac9a4ed
commit d173e6c6db
1 changed files with 55 additions and 40 deletions

View File

@ -103,9 +103,9 @@ return nil instead."
(defun org-bibtex-get-arguments (keyword) (defun org-bibtex-get-arguments (keyword)
"Return \"bibtex2html\" arguments specified by the user. "Return \"bibtex2html\" arguments specified by the user.
KEYWORD is a \"BIBLIOGRAPHY\" keyword. Return value is a plist KEYWORD is a \"BIBLIOGRAPHY\" keyword. Return value is a plist
containing `:options' and `:limit' properties. The former containing `:options' and `:limit' properties. The former
contains a list of strings to be passed as options ot contains a list of strings to be passed as options to
\"bibtex2html\" process. The latter contains a boolean." \"bibtex2html\" process. The latter contains a boolean."
(let ((value (org-element-property :value keyword))) (let ((value (org-element-property :value keyword)))
(and value (and value
(string-match "\\(\\S-+\\)[ \t]+\\(\\S-+\\)\\(.*\\)" value) (string-match "\\(\\S-+\\)[ \t]+\\(\\S-+\\)\\(.*\\)" value)
@ -201,9 +201,50 @@ Return new parse tree."
;; Return parse tree unchanged. ;; Return parse tree unchanged.
tree) tree)
(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
into \"\\cite{...}\" LaTeX fragments."
(when (org-export-derived-backend-p backend 'html 'latex)
(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
:post-blank object)))))
;; 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))
(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
:value (format "\\cite{%s}"
(mapconcat 'identity (nreverse keys) ",")))))))))
tree)
(eval-after-load 'ox (eval-after-load 'ox
'(add-to-list 'org-export-filter-parse-tree-functions '(progn (add-to-list 'org-export-filter-parse-tree-functions
'org-bibtex-process-bib-files)) 'org-bibtex-process-bib-files)
(add-to-list 'org-export-filter-parse-tree-functions
'org-bibtex-merge-contiguous-citations)))
@ -222,16 +263,7 @@ Fallback to `latex' back-end for other keywords."
(concat (and style (format "\\bibliographystyle{%s}\n" style)) (concat (and style (format "\\bibliographystyle{%s}\n" style))
(format "\\bibliography{%s}" file)))))))) (format "\\bibliography{%s}" file))))))))
(defadvice org-latex-link (around bibtex-link)
"Translate \"cite\" type links into LaTeX syntax.
Fallback to `latex' back-end for other keywords."
(let ((link (ad-get-arg 0)))
(if (not (org-bibtex-citation-p link)) ad-do-it
(setq ad-return-value
(format "\\cite{%s}" (org-bibtex-get-citation-key link))))))
(ad-activate 'org-latex-keyword) (ad-activate 'org-latex-keyword)
(ad-activate 'org-latex-link)
@ -258,35 +290,18 @@ Fallback to `html' back-end for other keywords."
(let ((fragment (ad-get-arg 0))) (let ((fragment (ad-get-arg 0)))
(if (not (org-bibtex-citation-p fragment)) ad-do-it (if (not (org-bibtex-citation-p fragment)) ad-do-it
(setq ad-return-value (setq ad-return-value
(mapconcat (format "[%s]"
(lambda (key) (mapconcat
(let ((key (org-trim key))) (lambda (key)
(format "[<a href=\"#%s\">%s</a>]" (format "<a href=\"#%s\">%s</a>"
key key
(or (cdr (assoc key org-bibtex-html-entries-alist)) (or (cdr (assoc key org-bibtex-html-entries-alist))
key)))) key)))
(org-split-string (org-bibtex-get-citation-key fragment) ",") (org-split-string
""))))) (org-bibtex-get-citation-key fragment) ",") ","))))))
(defadvice org-html-link (around bibtex-link)
"Translate \"cite:\" type links into HTML syntax.
Fallback to `html' back-end for other types."
(let ((link (ad-get-arg 0)))
(if (not (org-bibtex-citation-p link)) ad-do-it
(setq ad-return-value
(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 link)
"[ \t]*,[ \t]*")
"")))))
(ad-activate 'org-html-keyword) (ad-activate 'org-html-keyword)
(ad-activate 'org-html-latex-fragment) (ad-activate 'org-html-latex-fragment)
(ad-activate 'org-html-link)
(provide 'ox-bibtex) (provide 'ox-bibtex)