Is it possible to put an image above a top level heading? The example below has the same code chunk to display an image above and below the top level heading, but the image doesn't appear above the top level heading.
---
output: html_document
---
```{r echo=FALSE, message=FALSE, warning=FALSE}
library(imager)
im <- load.image(system.file('extdata/Leonardo_Birds.jpg',package='imager'))
plot(im, axes=FALSE)
```
# R Markdown
```{r echo=FALSE, message=FALSE, warning=FALSE}
library(imager)
im <- load.image(system.file('extdata/Leonardo_Birds.jpg',package='imager'))
plot(im, axes=FALSE)
```
EDIT The above code works - the problem appears to be only in some bookdown situations.