Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
转换markdown为html默认值时(我认为)将图像文件转换为字符串并将其嵌入到html文件中。knit在文件上运行时rhtml,情况并非如此。这里生成了一个单独的figure文件夹,这当然是一个明智的默认设置。
markdown
html
knit
rhtml
figure
但是如果我想嵌入我的图像,有没有办法使用rthmland来实现这一点knitr?我找不到在哪里声明它的任何选项。
rthml
knitr
谢谢,马克
好吧,我自己想通了。似乎与.Rmd文件一样工作,只需将字符串传递"base64_images"给knit2html.
.Rmd
"base64_images"
knit2html
knit2html("foo.Rhtml", options=c("base64_images"))