-
Notifications
You must be signed in to change notification settings - Fork 55
Org cite tips
Bruce D'Arcus edited this page May 18, 2022
·
5 revisions
Posted on reddit, a very cool solution, that should be easily-adapted for CVs, annotated bibliographies, or reading lists.
This solution should also work in the csl
and natbib
export processors:
#+title: CV
#+cite_export: biblatex
#+bibliography: /path/to/my.bib
Some text here. [cite/n:@*]
#+print_bibliography:
The default style editing UI should be self-explanatory enough, and I have plans to improve it in time. But if you're a hardcore latex users who really would prefer to see the natbib or biblatex commands in the completion UI, you can do something like this:
(defvar cmd-style
'(("citet" . "/t")
("citep" . "/")
("Citet" . "/t/c")))
(defun my/citar-natbib-style-choose ()
(let ((choice
(completing-read "natbib command: " cmd-style)))
(cdr (assoc choice cmd-style))))