我在 Rstudio 中使用 Knitr 来生成降价文件。我通过 xtable 包显示表格,它很好地显示在 html 文件中。但是,当我通过 pandoc 将 .md 转换为乳胶时-乳胶文件不包含应有的表格,而仅包含表格中的值而没有任何命令。
Markdown - Knitr 输入
为了给出更好的思路,下表提供了数据行的示例:
```{r table, results='asis', echo=FALSE}
r = read.table("C:/aR_files/data.txt",sep=",", header=TRUE,as.is=TRUE)
r$X = NULL;
print(xtable(r), type='html')
```
乳胶
In order to give a better idea, the following table provides a sample of
data rows:
Row1
Row2
Val1
Val1
我想我可能缺少一个乳胶包,所以我下载了 ctable.sty,但我仍然得到相同的输出。任何想法表示赞赏,谢谢!