From 03e7d1a66ca6a08ba52c1a837256ab0fd7ef48db Mon Sep 17 00:00:00 2001 From: Patrick Elliott Date: Wed, 18 Jul 2018 15:38:32 +0200 Subject: [PATCH] Sort entries and add `parencite` Co-authored by: @UndeadKernel --- modules/lang/latex/+ref.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/lang/latex/+ref.el b/modules/lang/latex/+ref.el index 7c7d53a6c..048b9048c 100644 --- a/modules/lang/latex/+ref.el +++ b/modules/lang/latex/+ref.el @@ -6,13 +6,14 @@ ;; Get ReTeX working with biblatex ;; http://tex.stackexchange.com/questions/31966/setting-up-reftex-with-biblatex-citation-commands/31992#31992 (setq reftex-cite-format - '((?t . "\\textcite[]{%l}") - (?a . "\\autocite[]{%l}") + '((?a . "\\autocite[]{%l}") + (?b . "\\blockcquote[]{%l}{}") (?c . "\\cite[]{%l}") - (?s . "\\smartcite[]{%l}") (?f . "\\footcite[]{%l}") (?n . "\\nocite{%l}") - (?b . "\\blockcquote[]{%l}{}")) + (?p . "\\parencite[]{%l}") + (?s . "\\smartcite[]{%l}") + (?t . "\\textcite[]{%l}")) reftex-plug-into-AUCTeX t reftex-toc-split-windows-fraction 0.3) (unless (string-empty-p +latex-bibtex-file)