Is it possible to include svg image in pdf document rendered by rmarkdown?

不羁的心 提交于 2019-12-03 14:22:33

I found a solution that works for me. It is based on using the svg LaTeX package and some LaTeX code inside your Rmarkdown file.

This can be achieved in these main steps:

  1. Include the svg package to the LaTeX preamble. This can be done using the Rmarkdown header.
  2. Make sure that LaTeX is called with the --shell-escape option enabled. This can also be done using the Rmarkdown header.
  3. Include your SVG image using \includesvg{svg-image} inside your Rmarkdown text. Be careful, do not include the file extension.

Make sure to use pdflatex as the LaTeX engine. Other engines will probably work as well, but they will require different options...

The following is a example that works in my machine, having a SVG image called svg-image.svg in the working directory.

---
output: 
  pdf_document:
    latex_engine: pdflatex
    pandoc_args: "--latex-engine-opt=--shell-escape"
header-includes:
   - \usepackage{svg}
---

\includesvg{svg-image}

I hope it helps!

Now we can simply use the cowplot library to read an image and plot it in R markdown.

```{r figSvg,eval=TRUE,echo=FALSE,message=FALSE, error=FALSE, warning=FALSE,fig.height=10}

library(ggplot2)
library(cowplot)
fig_svg<-cowplot::ggdraw()+cowplot::draw_image(http://jeroen.github.io/images/tiger.svg)
plot(fig_svg)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!