How can I easily import citations from R into endnote obtained by for instance
citation("ggplot2")
Is there a good workflow for this or do I manually have to do it?
How can I easily import citations from R into endnote obtained by for instance
citation("ggplot2")
Is there a good workflow for this or do I manually have to do it?
Copyright © 2021 Jogjafile Inc.
How automated this can be will depend on what Endnote can import. It seems BibTeX import is not currently possible out of the box, and requires some extra software. See for example: http://www.lib.uts.edu.au/content/faq/how-can-i-import-bibliography-endnote-bibtex-latex-what-about-converting-other-way-endno
Read
?bibentry
and in particular the argumentstyle
and the Details section. See if Endnote can import data in any of those formats? I doubt it, but I have never used Endnote.If not, we can go the BibTeX route if you install something that allows you to import BibTeX into Endnote.
To get this out into a file for passing to an import utility, you can use
capture.output()
Which gives a file with the following content:
which you should be able to import with third party tools.