diff options
author | Arash Esbati <arash.esbati@gmail.com> | 2016-12-30 07:44:41 +0100 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2016-12-30 10:28:29 +0100 |
commit | d9b126890dd729e18cb5522c38f33fc70daadd79 (patch) | |
tree | be03f2550d7c4902554e23b4e4c11d922121a0f0 /lisp/textmodes/reftex-vars.el | |
parent | c336420d9f2ffe5270d7deec360d84e1f45b4a55 (diff) | |
download | emacs-d9b126890dd729e18cb5522c38f33fc70daadd79.tar.gz emacs-d9b126890dd729e18cb5522c38f33fc70daadd79.tar.bz2 emacs-d9b126890dd729e18cb5522c38f33fc70daadd79.zip |
Add entry for biblatex
* lisp/textmodes/reftex-vars.el (reftex-cite-format-builtin): Add
entry for biblatex macros.
Diffstat (limited to 'lisp/textmodes/reftex-vars.el')
-rw-r--r-- | lisp/textmodes/reftex-vars.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index d6de53b2466..11dcdd5a183 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -151,6 +151,22 @@ distribution. Mixed-case symbols are convenience aliases.") (?A . "\\citeauthor*{%l}") (?y . "\\citeyear{%l}") (?n . "\\nocite{%l}"))) + (biblatex "The Biblatex package" + ((?\C-m . "\\cite[][]{%l}") + (?C . "\\cite*[][]{%l}") + (?t . "\\textcite[][]{%l}") + (?T . "\\textcite*[][]{%l}") + (?p . "\\parencite[][]{%l}") + (?P . "\\parencite*[][]{%l}") + (?f . "\\footcite[][]{%l}") + (?s . "\\smartcite[][]{%l}") + (?u . "\\autocite[][]{%l}") + (?U . "\\autocite*[][]{%l}") + (?a . "\\citeauthor{%l}") + (?A . "\\citeauthor*{%l}") + (?y . "\\citeyear{%l}") + (?Y . "\\citeyear*{%l}") + (?n . "\\nocite{%l}"))) (amsrefs "The AMSRefs package" ((?\C-m . "\\cite{%l}") (?p . "\\cite{%l}") |