我正在尝试将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文件夹?