减少RMarkdown的数据表之间的空间

时间:2019-10-08 16:58:04

标签: datatable rstudio markdown r-markdown knitr

我只是想知道是否有任何方法可以减少Rmarkdown工作表中表之间的空间(以下内容之一)。我尝试过

<div style="width: 100%;margin-top: 1px;margin-bottom: 1px;">
<div style="width: 63%;float: bottom;margin-top: 1px;margin-bottom: 1px;">

```{r, echo=FALSE, warning=FALSE,message=FALSE, results='asis'}
#here the two tables I need to print at the Markdown


But it doesn´t work. Do you have any sugestions? Thanks a lot!



2 个答案:

答案 0 :(得分:0)

两个表之间的最小距离是一行-否则它们将被合并(如您在我的示例中看到的): Example with 1 line distance and without one line distance

md文件的输出格式是什么?

答案 1 :(得分:0)

我可以通过在第二张桌子上使用负的页边距来最终解决它。

<div style="width: 100%;margin-top: 50px;margin-bottom: 0px;"> 
{r, echo=FALSE, warning=FALSE,message=FALSE, results='asis'} 
#one datatable here 
</div> 

<div style="width: 66%;float: bottom;margin-top:-19px;margin-bottom: 50px;"> 

{r, echo=FALSE, warning=FALSE,message=FALSE, results='asis'} 
#the otherone here (negative margin-top) 

</div>