使用带有xtable和原始HTML表的Knitr / R Markdown创建的HTML的无法解释的格式

时间:2014-04-28 06:22:00

标签: r knitr xtable r-markdown

通过原始HTML表格跟踪xtable会导致xtable和原始HTML表格之间的行格式无法格式化,如下图所示: enter image description here

段落不再显示为段落和标题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(): enter image description here

0 个答案:

没有答案