R Markdown : change the title of the "References" section?

标签 r r-markdown

我正在使用 R Markdown 编写一份报告,其中包含引用文献。问题是 R markdown 自动在报告末尾包含引用(例如不使用 \printbibliography 调用它们),并且部分标题是“References”。我用法语写作,所以我希望标题为“引用资料”,但更一般地说,有什么方法可以修改该部分的标题吗?

下面是可重现的示例:

---
title:
author:
date: 
abstract: 

output: 
  pdf_document:
    template: NULL
    number_sections: true
    citation_package: biblatex
bibliography: references.bib
biblio-style: bwl-FU
---

# Partie 1

\cite{greenwood_financial_1989}

# Partie 2

bla bla 

这是 references.bib 文件的内容:

@article{greenwood_financial_1989,
  title = {Financial Development, Growth and the Distribution of Income},
  url = {https://www.nber.org/papers/w3189},
  number = {3189},
  journaltitle = {NBER Working Paper Series},
  date = {1989},
  author = {Greenwood, Jeremy and Jovanovic, Boyan}
}

有人有解决办法吗?

最佳答案

这是结合 this 的解决方案回答用 bibtex 和 this 做类似的事情在 biblatex 中执行此操作所需的 TeX 上的一个,加上 @Ralf 关于添加 lang: fr 的评论

---
title:
author:
date: 
abstract: 

output: 
  pdf_document:
    template: NULL
    number_sections: true
    citation_package: biblatex
bibliography: references.bib
biblio-style: bwl-FU

lang: fr
---

关于R Markdown : change the title of the "References" section?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58170982/

相关文章:

r - 使用 R 的 org-babel 代码没有输出

r - 检测我在哪台计算机上运行 R 脚本

r - 在 terra SpatRaster 中命名分类级别时,如何防止添加额外级别?

r-markdown - 将 Markdown 代码块添加到 R Markdown 文档

r - 如何将 rmarkdown 报告与 shinyapps 链接以在 R 中导出 webapp 内容?

r - 如何在 R 中输出\楔形?

colorNumeric() 中的反转颜色

r - Rmarkdown PDF 中数据表屏幕截图中的空白

r - 是否有 R 脚本可以使用 Excel 电子表格中的内容编写 rmd 文件?

r - 使用 rmarkdown 在 pdf 中插入 GIF