summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArash Esbati <arash@gnu.org>2017-01-26 20:25:16 +0100
committerTassilo Horn <tsdh@gnu.org>2017-01-27 17:47:03 +0100
commit21d661d5f7e2dd59b6d427f94faf5cc281ecf719 (patch)
tree76bd725f0ad4d5f5b3633155dbe581295dc159b7
parent03c1080cd4c9b45fc9b7467e156085d4fce446a4 (diff)
downloademacs-21d661d5f7e2dd59b6d427f94faf5cc281ecf719.tar.gz
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.
-rw-r--r--lisp/textmodes/reftex-vars.el2
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}")))