Rmarkdown 没有书目样式效果
Rmarkdown does not have bibliography style effect
在 Rmd 文件中使用 biblio-style
是否有效?我可以看到一个 来提供外部样式文件。但是,我想知道 biblio-style
需要什么才能工作?我无法确定有关 this: different styles available for usage 用法的相关说明。
---
title: "Analysis"
date: "27 October 2017"
output:
html_document:
toc: true
toc_depth: 2
bibliography: bibliography.bib
biblio-style: acm
---
它是否仅在使用 bookdown
包渲染图书时有效?
biblio-style
选项仅适用于 LaTeX/PDF 输出。它对 HTML 输出没有影响。要指定后者的参考书目样式,您必须使用 the csl
option.
在 Rmd 文件中使用 biblio-style
是否有效?我可以看到一个 biblio-style
需要什么才能工作?我无法确定有关 this: different styles available for usage 用法的相关说明。
---
title: "Analysis"
date: "27 October 2017"
output:
html_document:
toc: true
toc_depth: 2
bibliography: bibliography.bib
biblio-style: acm
---
它是否仅在使用 bookdown
包渲染图书时有效?
biblio-style
选项仅适用于 LaTeX/PDF 输出。它对 HTML 输出没有影响。要指定后者的参考书目样式,您必须使用 the csl
option.