指定參考書目並引用作者
RMD 檔案中最重要的部分是 YAML 標頭。對於撰寫學術論文,我建議使用 PDF 輸出,編號部分和內容表(toc)。
author: "Author"
date: "Date"
output:
pdf_document:
number_sections: yes
toc: yes
bibliography: bibliography.bib```
在這個例子中,我們的檔案 `bibliography.bib` 如下所示:
``` placeholder
@ARTICLE{Meyer2000,
AUTHOR="Bernd Meyer",
TITLE="A constraint-based framework for diagrammatic reasoning",
JOURNAL="Applied Artificial Intelligence",
VOLUME= "14",
ISSUE = "4",
PAGES= "327--344",
YEAR=2000
}
要引用 .bib 檔案中提到的作者,請寫 @
和 bibkey,例如 Meyer2000
。
## Introduction
`@Meyer2000` results in @Meyer2000.
`@Meyer2000 [p. 328]` results in @Meyer2000 [p. 328]
`[@Meyer2000]` results in [@Meyer2000]
`[-@Meyer2000]` results in [-@Meyer2000]
## Summary
## References
通過 RStudio(Ctrl + Shift + K)或通過控制檯 rmarkdown::render("<path-to-your-RMD-file">)
渲染 RMD 檔案會產生以下輸出: