diff options
author | Arash Esbati <arash@gnu.org> | 2017-01-26 20:25:16 +0100 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2017-01-27 17:47:03 +0100 |
commit | 21d661d5f7e2dd59b6d427f94faf5cc281ecf719 (patch) | |
tree | 76bd725f0ad4d5f5b3633155dbe581295dc159b7 /lisp/textmodes/reftex-vars.el | |
parent | 03c1080cd4c9b45fc9b7467e156085d4fce446a4 (diff) | |
download | emacs-21d661d5f7e2dd59b6d427f94faf5cc281ecf719.tar.gz emacs-21d661d5f7e2dd59b6d427f94faf5cc281ecf719.tar.bz2 emacs-21d661d5f7e2dd59b6d427f94faf5cc281ecf719.zip |
Add \citetitle to biblatex cite format
* lisp/textmodes/reftex-vars.el (reftex-cite-format-builtin): Add
\citetitle[*] to `reftex-cite-format' and bind them to keys i/I
per user request
http://lists.gnu.org/archive/html/auctex/2017-01/msg00049.html.
Diffstat (limited to 'lisp/textmodes/reftex-vars.el')
-rw-r--r-- | lisp/textmodes/reftex-vars.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 63abd048e9d..03da584e96f 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -164,6 +164,8 @@ distribution. Mixed-case symbols are convenience aliases.") (?U . "\\autocite*[][]{%l}") (?a . "\\citeauthor{%l}") (?A . "\\citeauthor*{%l}") + (?i . "\\citetitle{%l}") + (?I . "\\citetitle*{%l}") (?y . "\\citeyear{%l}") (?Y . "\\citeyear*{%l}") (?n . "\\nocite{%l}"))) |