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

问题描述 投票:3回答:1

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

r latex r-markdown citations biblatex
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.