I am using bookdown to write a paper, and the zotero bibtex plug in to reference. When I knit, the bibliography is automatically added from my references.bib
file. The YAML in my index is:
site: bookdown::bookdown_site
output:
bookdown::gitbook: default
documentclass: book
bibliography: references.bib
csl: african-online-scientific-information-systems-harvard.csl
link-citations: yes
When I knit, it puts my bibliography at the end, which is great. However I'm not sure how to format the bibliography, at the moment it is just a block of text, I'd like a little more stylish formatting, say an indent on the second line of a specific reference.
Thanks