通过原始HTML表格跟踪xtable会导致xtable和原始HTML表格之间的行格式无法格式化,如下图所示:
段落不再显示为段落和标题3(如果删除此html表格,格式正确)不再被视为标题。
以下代码包含.RMD文件的内容 - 如果您发现我的代码中有任何错误,或者所需的解决方法是什么,请您告诉我?
感谢。
Printing xtable followed by HTML table
=================================
### Heading 3
paragraph 1
paragraph 2
```{r displayProductionDataSources, echo=FALSE, results='asis'}
require(xtable)
print(xtable(data.frame(Temp=mean(airquality$Temp))), type = "html", include.rownames = FALSE)
```
paragraph 3
paragraph 4
### If you remove this html table, the formatting is correct
<table>
<tr align="left">
<th>Dataframe</th>
<th>Description</th>
<th>Variables</th>
</tr>
</table>
sessionInfo():