aboutsummaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-01-26 18:19:40 -0500
committerRyan Kavanagh <rak@rak.ac>2021-01-26 18:19:40 -0500
commit7c0f84e4dd5a8dcf37e92ce9e4748f9d2e3df3ae (patch)
treeb6a3ef90b26781f310651e947aa8c4a5957f02ca /.emacs
parentdrop org agenda/diary config (diff)
Org-ref changed the type of org-ref-title-case-types. Fix it
Diffstat (limited to '.emacs')
-rw-r--r--.emacs7
1 files changed, 6 insertions, 1 deletions
diff --git a/.emacs b/.emacs
index 5b26e06..4267188 100644
--- a/.emacs
+++ b/.emacs
@@ -516,9 +516,14 @@ If not, issue a warning."
(unless (member journal (-flatten org-ref-bibtex-journal-abbreviations))
(message "Journal \"%s\" not found in org-ref-bibtex-journal-abbreviations." journal))))))
:custom
- (org-ref-title-case-types '("article" "book" "inproceedings" "proceedings" "report"))
+ (org-ref-title-case-types '(("article" "title")
+ ("book" "booktitle" "title")
+ ("inproceedings" "booktitle" "title")
+ ("proceedings" "title")
+ ("report" "title")))
(org-ref-bibtex-journal-abbreviations
'(("CACM" "Communications of the ACM" "Comm. ACM")
+ ("Discourse \\& Society")
("ENTCS" "Electronic Notes in Theoretical Computer Science")
("Information and Computation")
("International Journal of Foundations of Computer Science" "Int. J. Found. Comput. Sci.")