Skip to content

Instantly share code, notes, and snippets.

@ejmg
Created January 23, 2017 07:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ejmg/c2cda117f8f7a0e218adbe963a38387f to your computer and use it in GitHub Desktop.
Save ejmg/c2cda117f8f7a0e218adbe963a38387f to your computer and use it in GitHub Desktop.
How to use biber with orgmode --> latex

I may be wrong, but to my knowledge org-mode does not natively play well with biber for bibliography/reference purposes. Until I figure out a work around, here's what I've figured out along with what the internet has shown me.

Given that you are using biblatex with biber as your bibliography system, the file is test.org, and you have the necessary configurations (packages, .bib file, etc) you must:

  1. Export orgmode as latex with org-latex-export-to-latex

  2. Then via terminal:

pdflatex test.tex
biber test
pdflatex test.tex

should produce the pdf file with the proper references

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment