I want to insert a picture at the beginning of text using a code block, not markdown. I am using the Tufte handout template output: rmarkdown::tufte_handout and whe
output: rmarkdown::tufte_handout
When a figure is not generated from R code, you may use knitr::include_graphics() to insert it to the document, e.g.
knitr::include_graphics()
```{r echo=FALSE, out.width='100%'} knitr::include_graphics('./cropped-banner_efpt.jpg') ```