【发布时间】:2014-10-30 03:40:06
【问题描述】:
我正在尝试使用 RMarkdown 的 bibtex 功能进行引用,但我的引用没有被呈现。
我正在使用最新版本的 R、RStudio 和 RMarkdown。
我的 rmd 文件如下所示:
---
title: "Music Recommender Systems"
output:
html_document:
theme: united
toc: yes
pdf_document:
toc: yes
word_document: default
bibliography: bibliography.bib
---
Blah blah @778431
我的 bibtex 文件“bibliography.bib”与 .rmd 文件相邻保存,如下所示:
@inproceedings{778431,
author = {Lesaffre, Micheline and Leman, Marc and Martens, Jean-Pierre},
booktitle = {Dagstuhl Seminar Proceedings},
editor = {Crawford, T. and Veltkamp, R.C.},
issn = {1862-4405},
language = {eng},
location = {Dagstuhl, Germany},
pages = {1--11},
publisher = {Internationales Begegnungs- und Forschungszentrum fur Informatik (IBFI), Schloss},
title = {A user-oriented approach to music information retrieval},
url = {http://drops.dagstuhl.de/vollt...},
year = {2006},
}
而不是呈现引文,输出只是说:
废话@778431
发生了什么事?要查看格式建议,请参阅http://rmarkdown.rstudio.com/authoring_bibliographies_and_citations.html 我相信我的设置是正确的,但如果我遗漏了一个小错误,我很乐意指出。
注意,我最初在我的文件中尝试了 [@778431]。
【问题讨论】:
标签: r rstudio r-markdown bibtex