R Markdown: How do I make text float around figures?

后端 未结 3 2080
刺人心
刺人心 2020-12-16 05:59

I made a flowchart with R which I included in my R Markdown file.

How it looks like right now:

The code:

```{r flowchart-data, echo = FALSE,         


        
3条回答
  •  悲&欢浪女
    2020-12-16 06:21

    I struggled a lot with this as well, but for html-output. There is an argument to the r chunk that solved the problem for me:

    out.extra='style="float:right; padding:10px"'

提交回复
热议问题