大家好,
当我尝试使用KnitR创建PDF时,我收到以下错误。
Error: pandoc document conversion failed with error 43
In addition: Warning message:
running command '"C:/Program Files/RStudio/bin/pandoc/pandoc" FirmsoftReportGenerator.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-implicit_figures --output
{....}
\Documents\R\win-library\3.1\rmarkdown\rmd\latex\default.tex" --highlight-style tango --latex-engine pdflatex --variable "geometry:margin=1in"' had status 43
我搜索了论坛,发现有2个引用,这导致我更新了我的Rmarkdown软件包。但是,我仍然收到错误。
我的代码包括获取R文件,创建表格。 然后执行以下操作:
```{r outputSection, results="asis", echo=FALSE}
library(xtable)
print(xtable(overallSummary), comment=FALSE)
```
Total Raw Messages are: `r totalRawMessages`.
任何正确方向的帮助都是巨大的! 提前致谢
PS - 该脚本使用不同的CSV作为源生成PDF。 我注意到较新的源文件的主要区别是其中一个rownames在我试图打印的表中有一个空格。
PPS - 当我用“TEST1”用空格手动替换行名时,一切正常 rownames(overallSummary)[1]< - “TEST1”