引文樣式
預設情況下,pandoc
將使用芝加哥作者日期格式引用和引用。要使用其他樣式,你需要在 csl 後設資料欄位中指定 CSL 1.0 樣式檔案。在下文中,將介紹一種常用的引用風格,即 elsevier 風格(下載地址為 https://github.com/citation-style-language/styles )。樣式檔案必須儲存在與 RMD 檔案相同的目錄中,或者必須提交檔案的絕對路徑。
要使用另一種樣式,然後使用預設樣式,使用以下程式碼:
author: "Author"
date: "Date"
output:
pdf_document:
number_sections: yes
toc: yes
bibliography: bibliography.bib
csl: elsevier-harvard.csl
# Introduction
`@Meyer2000` results in @Meyer2000.
`@Meyer2000 [p. 328]` results in @Meyer2000 [p. 328]
`[@Meyer2000]` results in [@Meyer2000]
`[-@Meyer2000]` results in [-@Meyer2000]
# Summary
# Reference
https://i.stack.imgur.com/pBnr2.jpg
請注意示例指定參考書目和引用作者的輸出的差異