Reputation: 5696
Does biblio-style
work when used in the Rmd file? I could see an option to provide external style file. But, I would like to know what does it require for biblio-style
to work? I could not identify relevant notes on the usage of 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
---
Does it only works while rendering books using the bookdown
package?
Upvotes: 1
Views: 426
Reputation: 30104
The biblio-style
option only works for LaTeX/PDF output. It has no effect on HTML output. To specify the bibliography style of the latter, you have to use the csl
option.
Upvotes: 1