Marvin Gülker <[email protected]> writes: > (defun my/extract-bibentries () > "Creates a buffer with all bib entries corresponding to the citation > keys > used in the current org buffer. The keys are gathered during export, so > export the document first before calling this function." > (interactive) > (let ((bibfiles nil)
You may want to (let ((bibfiles org-cite-global-bibliography) ... ) to be sure to get all available bibliographies. You may also want to set my/org-exported-citekeys to nil at the end of that function. Otherwise, you will not get an error message if you try to extract the citekeys of another document in the same session without exporting it first. Regards, Christian
