I want the svg image to be embedded in the PDF document that I rendered with rmarkdown. Does this not seem possible, or am I missing something? If this is not possible, is there a way to convert the .svg image to .png first before embedding it?
In my rmarkdown file, it looks like this (note the two different types of image insertion):
```{r results="asis",eval=TRUE,echo=FALSE,message=FALSE, error=FALSE, warning=FALSE, comment = NA,fig.height=10}
cat("")
```

source
share