I am using bookdown in RStudio and when I pushed de knit button to compile a figure did not appear

knitr::include_graphics('C:/Ernesto/FotosLibros/ConsolaR.png')

have you tried:

![alt text here](path-to-image-here)

I did what you sugested but the image did not appear
Tks

You have spaces in the image file path.
"The file name of the image should not contain white spaces nor multiple dots"
Removing spaces will fix the problem, and it would generally be good practice to avoid them in R even if they technically are allowed.
I found it in :

:smile:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.