Any ideas how to cite references in R Markdown from Endnote library (.enl)? This webpage says it's possible but I can't get it to work.
If I export the .enl (available here, I zipped the .enl and data folder) into .xml (available here), it works:
---
title: "test"
author: guys
output: pdf_document
bibliography: Library_short.xml
---
something something dark side... [@Marshall1989]
# References
I can also make it work if I convert the library into .bib (available here):
---
title: "test"
author: guys
output: pdf_document
bibliography: Library_short.bib
---
something something dark side... [@RN1]
# References
But it's not convenient, because every time I add a ref in Endnote I would have to export the .enl library into xml or bib. Thanks