knitr-pandoc跳过表格和图形

时间:2014-04-08 17:11:25

标签: docx pandoc

我正在尝试将markdown文件转换为docx,但图像和表格未转移到docx。 我正在做以下事情:

require(knitr)
require(markdown)

针织

knit('test.rmd')
markdownToHTML('test.md', 'test.html', options=c("use_xhml"))

转换为pdf(很好地创建了pdf)

system("pandoc -s test.html -o test.pdf")

转换为Word文档(转换为test.docx但没有表格或图形)

pandoc("test.md",format="docx")

所有表格和图像都保存在“图”文件夹内的同一目录中 我是否需要在pandoc中添加另一个参数来查找Figure文件夹?

0 个答案:

没有答案