Skip to content

Latest commit

 

History

History
76 lines (47 loc) · 1.64 KB

bbl-super.org

File metadata and controls

76 lines (47 loc) · 1.64 KB

The natbib bbl cite processor with superscripts

Citations

A single key cite:&boes-2016-neural-networ.

another single cite:&boes-2017-neural-networ

Two keys cite:&boes-2016-neural-networ;&boes-2017-neural-networ.

Three keys cite:&boes-2016-neural-networ;&xu-2017-first-princ;&boes-2017-neural-networ that should be merged.

Four keys, with last three merged cite:&boes-2016-neural-networ;&xu-2017-first-princ;&boes-2017-model-segreg;&geng-2017-first-princ.

A book cite:&Dominik201408.

Misc entry cite:&jkitchin76:online.

Cross-references

\begin{equation} ∫_0^1 e^x dx \end{equation}

\begin{equation} ∫_0^10 e^x dx \end{equation}

See eqref:eq. and See eqref:eq-2.

bibliographystyle:unsrtnat bibliography:../org-ref.bib

build

Org

(require 'org-ref-natbib-bbl-citeproc)
(let ((org-export-before-parsing-hook '(org-ref-bbl-preprocess)))
  (org-org-export-as-org))

./bbl-super.bbl

html

(let ((org-export-before-parsing-hook '(org-ref-bbl-preprocess org-ref-refproc)))
  (org-open-file (org-html-export-to-html)))

docx via pandoc

ox-pandoc

(require 'ox-pandoc)
(let ((org-export-before-parsing-hook '(org-ref-bbl-preprocess
					org-ref-refproc)))
  (org-open-file (plist-get (org-pandoc-export-to-docx) 'output-file) 'system))