如何减少/删除R Markdown代码中列表项之间的空间?

时间:2020-10-20 14:38:19

标签: r r-markdown markdown

好的,所以我要将R Markdown编织到Word文档中,并希望尽可能删除列表项之间的空白。

我正在使用的代码是:

- The first line.
- The second line.
- The third line.

有人可以帮忙吗?预先感谢。

1 个答案:

答案 0 :(得分:1)

我们可以在Rmarkdown中使用CSS做到这一点!只需添加一个CSS块,您就可以控制文本正文或任何其他所需的文本。

---
title: "Rmarkdown page"
output: html_document
---

```{css echo = FALSE}
body {line-height: 5;}
```

- item 1
- item 2
- item 3

enter image description here

---
title: "Rmarkdown page"
output: html_document
---

```{css echo = FALSE}
body {line-height: .8;}
```

- item 1
- item 2
- item 3

enter image description here