I want to use emacs org-mode to take notes of my bibliography. I am trying to capture some fields from a bibtex file and insert them into an org file with the org-ref-open-bibtex-notes
. This is not working for me.
For example, I have a bibliography.bib
:
@comment -*- org-ref-bibliography-notes: "./articles.org" -*-
@article{Mouhot2010,
author = {Mouhot, C. and Villani, C.},
title = {{Landau Damping}},
journal = {J. Math. Phys.},
number = {1},
volume = {51},
year = {2010},
doi = {10.1063/1.3285283},
}
The first line sets the local variable org-ref-bibliography-notes
to "./articles.org"
. If I run M-x org-ref-open-bibtex-notes
, the file ./articles.org
is populated with:
# -*- org-ref-default-bibliography: ("./articles.bib") -*-
** TODO -
:PROPERTIES:
:Custom_ID:
:AUTHOR:
:JOURNAL:
:YEAR:
:VOLUME:
:PAGES:
:DOI:
:URL:
:END:
cite:
The bibtex fields like author
or year
are empty. How can I capture these fields? Alternatively, I would like to get the following output:
# -*- org-ref-default-bibliography: ("./articles.bib") -*-
* Mouhot and Villani (2010): Landau Damping
:PROPERTIES:
:Custom_ID: cite:Mouhot2010
:END:
I am using emacs 24.5.1, org 20190812 (orgmode elpa) and org-ref 20190802.1327 (melpa)