This is the yaml section in my index.Rmd
---
title: "The Little Machine Learning Book"
author: "Albert F. Lee, Ph.D."
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output:
bookdown::gitbook:
lib_dir: assets
split_by: section
config:
toolbar:
position: static
bookdown::pdf_book:
keep_tex: yes
citation_package: biblatex
bookdown::html_book:
css: toc.css
documentclass: book
bibliography: ["02.bib", "03.bib", "04.bib", "05.bib", "06.bib", "07.bib", "08.bib",
"09.bib", "10.bib", "13.bib", "11.bib", "12.bib"]
biblio-style: "apalike"
link-citations: true
---
and this is the output of Reference at the end of Chapter 2
??? ){field2013, title = {Discovering Statistics using R}, author = {Field, A. and Miles, J. and Field, Z.}, publisher = {Sage}, address = {California}, year = {2013}, note = {ISBN 978-1-4462-0045-2} }
( ??? ){Hosmer1989, title = {Applied Logistic Regression}, author = {Hosmer, D.W. and Lemeshow, S.}, publisher = {Wiley}, address = {New York, NY}, year = {1989}, note = {ISBN 978-0-4705-8247-3} }
I am re-reading the book and still can't figure out how to fix it. As you can see I have 12 chapters in my book and at the end of each chapter (.Rmd) I have a reference in "02.bib" in this case.
And this what I have at the end of 02-LR.Rmd.
I am just trying to publish the book with correct reference. It is frustrating, no less.
please help. Thanks,