如何在R Markdown中改变biblatex中的引用风格?

时间:2018-03-01 04:26:10

标签: r latex r-markdown citations biblatex

当{。{1}}包含在.Rmd文件的YAML中时,是否可以指定引文样式?我在各种R降价手册中找不到任何相关信息。

1 个答案:

答案 0 :(得分:3)

  

此问题已在March 2016中得到解决。由于很多文档都是在此之前编写的,因此并不总是出现在指南中。但是,rmarkdown上的NEWS文件始终是检查新功能的好地方。

您可以在YAML中使用biblio-style参数。如果您熟悉乳胶,这基本上填写了\usepackage[style= *SELECTED STYLE*]{biblatex}。这是一个例子。它将为您构建一个单独的.bib文件:

---
output: 
  pdf_document:
    citation_package: biblatex
keep_tex: TRUE
bibliography: test.bib
---

```{r}
knitr::write_bib(x = c("knitr", "rmarkdown") , file = "test.bib")
```

Some ref [@R-knitr]

Another ref [@R-rmarkdown]

# References

这输出: enter image description here

添加biblio-style参数:

---
output: 
  pdf_document:
    citation_package: biblatex
keep_tex: TRUE
bibliography: test.bib
biblio-style: authoryear
---

```{r}
knitr::write_bib(x = c("knitr", "rmarkdown") , file = "test.bib")
```

Some ref [@R-knitr]

Another ref [@R-rmarkdown]

# References

enter image description here

要了解有关您可以使用的不同样式的更多信息,请点击此处:https://www.sharelatex.com/learn/Biblatex_citation_styles

  

更进一步:YAML仅提供对biblio风格的一定程度的控制。例如,您无法直接指定citestyle。如果您想进一步更改biblatex样式,则需要编辑pandoc模板:https://github.com/rstudio/rmarkdown/blob/master/inst/rmd/latex/default-1.15.2.tex。这有点高级,所以只有在你对LaTex感到满意时才推荐它:https://rmarkdown.rstudio.com/pdf_document_format.html#custom_templates