The message I am getting is:
ERROR: NotFound: No such file or directory (os error 2), rename '/Users/johnm1/_notes/usingR-Booklet/index.html' -> '/Users/johnm1/_notes/usingR-Booklet/_book/index.html'
My _quarto.yml file is:
project:
type: book
book:
title: "Using R for Data Analysis and Graphics"
author: "John Maindonald"
date: today
date-format: iso
chapters:
- index.qmd
- basics.qmd
- graphs.qmd
- reg.qmd
- GLMandA.qmd
- ts.qmd
- trees.qmd
- mva.qmd
- mlm.qmd
- references.qmd
toc: true
number-sections: true
number-depth: 2
bibliography:
- book.bib
- packages.bib
format:
html:
theme: cosmo
fig-width: 5
fig-height: 5.5
pdf:
documentclass: scrreprt
fig-width: 4.5
fig-height: 5
knitr:
opts_chunk:
collapse: true
comment: ""
R.options:
fig_align: "center"
editor: visual
A check shows that all the other html files are created.
A prior render of index.qmd ran without error. A subsequent render showed the error
"cannot recreate existing named lifetime render-file". What does this mean?
A further point is that I have the following _quarto.qmd file. I am puzzled as to how/why this was generated.
project:
type: website
output-dir: docs
book: title: 'Using R for Data Analysis and Graphics' subtitle: "A Broad and Brief Overview" author: "John Maindonald" date: today date-format: iso chapters: - index.qmd - basics.qmd - graphs.qmd - reg.qmd - GLMandA.qmd - intro.qmd - summary.qmd - references.qmd
bibliography: \[references.bib, packages.bib, book.bib\]
format: html: theme: cosmo pdf: documentclass: scrreprt editor: visual
The website is Using R for Data Analysis and Graphics