Emacs includes bibtex-mode for editing bibliography files used by BibTeX. Is there a way to make it support the bibliography files used by biblatex?
Asked
Active
Viewed 1,975 times
13
1 Answers
16
Since Emacs 24.1 bibtex-mode supports biblatex:
* BibTeX mode now supports biblatex. Use the variable `bibtex-dialect' to select different BibTeX dialects.
To use it you can for example set it as a file variable to bibliography files by adding the following to their first line:
-*- mode:bibtex; bibtex-dialect: biblatex -*-
N.N.
- 36,163
-*- mode:bibtex; eval: (bibtex-set-dialect 'biblatex); -*-instead – Andrew Swann Sep 29 '14 at 09:37(setq bibtex-set-dialect 'biblatex)to yourinit.lefile. – Adam May 14 '17 at 14:39