I have bibliography for each chapter. But after compiling my book the bibliography does not render correctly: it still has ## in front of every line.
I used to following code at the end of each chapter. e.g. "02.bib"
require("knitcitations")
cleanbib()
options("citation_format" = "pandoc")
read.bibtex(file = "02.bib")
#read.bib(file = "02.bib", package ="bibtex")
Ouput
## [1] A. Field, J. Miles, and Z. Field. _Discovering Statistics using R_.
## ISBN 978-1-4462-0045-2. California: Sage, 2013.
##
## [2] R Core Team. _R: A Language and Environment for Statistical
## Computing_. R Foundation for Statistical Computing. Vienna, Austria,
## 2021. <URL: https://www.R-project.org/>.
How do I get rid of ## in the output.
please help.