Function: reftex-using-biblatex-p
reftex-using-biblatex-p is a byte-compiled function defined in
reftex-parse.el.gz.
Signature
(reftex-using-biblatex-p)
Documentation
Return non-nil if we are using biblatex rather than bibtex.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-parse.el.gz
(defun reftex-using-biblatex-p ()
"Return non-nil if we are using biblatex rather than bibtex."
(if (boundp 'TeX-active-styles)
;; the sophisticated AUCTeX way
(member "biblatex" TeX-active-styles)
;; poor-man's check...
(save-excursion
(re-search-forward "^[^%\n]*?\\\\usepackage.*{biblatex}" nil t))))