R markdown: can I insert a pdf to the r markdown file as an image?

前端 未结 4 1753
长发绾君心
长发绾君心 2021-02-04 01:23

I am trying to insert a pdf image into an r markdown file. I know it is possible to insert jpg or png images. I was just wondering if it is also possible to insert a pdf image.

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-04 02:23

    None of the answers outlined worked well for me in terms of sizing the pdf, so adding another answer using the code chunk options for out.height and out.width to control the size:

    ```{r out.height = "460px", out.width='800px', echo=F}
    knitr::include_graphics("./images/imagename.pdf")
    ```
    

提交回复
热议问题