5

I want to extract the title of a bibtex entry by using a convenient org-ref function. Is there a way? How?

Im using org-ref with org-mode in spacemacs.

1 Answer 1

3

Here's a basic function to look up the entry and title based on the citation at point (bibtex-completion is a dependency of org-ref):

(defun my/print-reference-title () "Print the title to the reference at point in the minibuffer." (interactive) (message (assoc-default "title" (bibtex-completion-get-entry (org-ref-get-bibtex-key-under-cursor))))) 

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.