Display bibliographic entry for citekey at point in echo area #856
tillheilmann
started this conversation in
Ideas
Replies: 3 comments 3 replies
-
Hmm ... what context? If you're talking about org, is that not already the case? It should be. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, I see. I use markdown(-mode) for writing academic papers. And: no, on my machine, org-mode/citar do not display bibliographic entries for citekeys at point in echo area. |
Beta Was this translation helpful? Give feedback.
3 replies
-
Answer in linked, now closed, issue: (defun +citar-eldoc (callback)
(when-let ((key (citar-key-at-point)))
(funcall callback (citar-format-reference `(,key)) :thing key)))
(add-hook 'LaTeX-mode-hook
(defun +latex-eldoc ()
(add-hook 'eldoc-documentation-functions #'+citar-eldoc nil t)
(eldoc-mode))) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Would citar be the right package to include a feature like RefTeX's citation info, i.e. to display the reference of a citekey at point in the echo area?
Beta Was this translation helpful? Give feedback.
All reactions