不能在 blogdown 中使用 bibtex 引用?
Cannot cite using bibtex in blogdown?
我的问题类似于
不过我用rmd文件引用了还是不行。我不知道哪里出了问题,我应该在 Rmd 文件中添加什么。
希望在文中引用Casella的Statistical Inference这本书,生成参考。
例如
我从 google 学者创建了 si.bib 文件并将其放入 /content/post 文件夹。
我创建了一个名为 "cite something" 的 Rmd 文件并包含了这样的代码
---
title: cite something
author: ''
date: '2018-05-17'
slug: cite-something
categories: []
tags: []
bibliography: [si.bib]
link-citations: true
---
@si
# Reference
我希望创造这样的东西
但只得到
我的 github 存储库在这里:https://github.com/hc704/hc704.com
我的 netlify 网站在这里:hc704.netlify.com
在此先感谢您的帮助。
请注意,您使用的是 @si
,这似乎是错误的。 si
是包含您所有参考的文件的名称,它不是 Casella 参考的密钥。
@book{casella2002statistical,
title={Statistical inference},
author={Casella, George and Berger, Roger L},
volume={2},
year={2002},
publisher={Duxbury Pacific Grove, CA}
}
然后你应该将它引用为 @casella2002statistical
而不是 @si
(这是文件的名称)。
我的问题类似于
不过我用rmd文件引用了还是不行。我不知道哪里出了问题,我应该在 Rmd 文件中添加什么。
希望在文中引用Casella的Statistical Inference这本书,生成参考。
例如
我从 google 学者创建了 si.bib 文件并将其放入 /content/post 文件夹。
我创建了一个名为 "cite something" 的 Rmd 文件并包含了这样的代码
--- title: cite something author: '' date: '2018-05-17' slug: cite-something categories: [] tags: [] bibliography: [si.bib] link-citations: true --- @si # Reference
我希望创造这样的东西
但只得到
我的 github 存储库在这里:https://github.com/hc704/hc704.com
我的 netlify 网站在这里:hc704.netlify.com
在此先感谢您的帮助。
请注意,您使用的是 @si
,这似乎是错误的。 si
是包含您所有参考的文件的名称,它不是 Casella 参考的密钥。
@book{casella2002statistical,
title={Statistical inference},
author={Casella, George and Berger, Roger L},
volume={2},
year={2002},
publisher={Duxbury Pacific Grove, CA}
}
然后你应该将它引用为 @casella2002statistical
而不是 @si
(这是文件的名称)。