如何轻松地将R中的引文导入到例如
获得的尾注中citation("ggplot2")
是否有良好的工作流程或手动操作?
答案 0 :(得分:8)
这种自动化程度取决于Endnote可以导入的内容。看来BibTeX导入目前无法开箱即用,并且需要一些额外的软件。例如,请参阅:http://www.lib.uts.edu.au/content/faq/how-can-i-import-bibliography-endnote-bibtex-latex-what-about-converting-other-way-endno
阅读?bibentry
,特别是参数style
和详细信息部分。查看Endnote是否可以导入任何格式的数据?我对此表示怀疑,但我从未使用过Endnote。
如果没有,我们可以使用BibTeX路线,如果您安装了允许您将BibTeX导入Endnote的东西。
> utils:::print.bibentry(citation("ggplot2"), style = "Bibtex")
@Book{,
author = {Hadley Wickham},
title = {ggplot2: elegant graphics for data analysis},
publisher = {Springer New York},
year = {2009},
isbn = {978-0-387-98140-6},
url = {http://had.co.nz/ggplot2/book},
}
要将其发送到文件以传递给导入实用程序,您可以使用capture.output()
capture.output(utils:::print.bibentry(citation("ggplot2"), style = "Bibtex"),
file = "endnote_import.bib")
其中包含以下内容的文件:
$ cat endnote_import.bib
@Book{,
author = {Hadley Wickham},
title = {ggplot2: elegant graphics for data analysis},
publisher = {Springer New York},
year = {2009},
isbn = {978-0-387-98140-6},
url = {http://had.co.nz/ggplot2/book},
}
您应该可以使用第三方工具导入。