在 R Markdown 中控制无序列表中的行距
Control line spacing in unordered list in R Markdown
我正在使用 R Markdown 创建 html 报告。第一段包含由某些带有简短描述的示例表示的类别列表。这是一个例子:
This is the test list:
* **first group**:
+ **item 1** - this is the description of an item
* **second group**:
+ **item 2** - this is the description of an item
+ **item 3** - this is the description of an item
* **third group**:
+ **item 4** - this is the description of an item
* **fourth group**:
+ **item 5** - this is the description of an item
+ **item 6** - this is the description of an item
文本被插入到代码块之外。我想保留针织文档中线条之间的这个(均匀)间距,这样它就很容易阅读。否则看起来太压扁了。不幸的是,R Markdown 改变了间距,所以有些间距不均匀。我尝试使用尾随空格并使用 br 定义换行符,但没有任何改变。我当然可以在编织后手动编辑 html 文件,但这是一种蛮力方式。 R Markdown 必须有一些选项来处理它——但我自己无法弄清楚。非常感谢任何帮助。
您可以在 rmarkdown 文档的开头添加一个 css
标记,以指定您希望 html 输出如何解释行高:
```{css}
li {
line-height: 3;
}
...
我正在使用 R Markdown 创建 html 报告。第一段包含由某些带有简短描述的示例表示的类别列表。这是一个例子:
This is the test list:
* **first group**:
+ **item 1** - this is the description of an item
* **second group**:
+ **item 2** - this is the description of an item
+ **item 3** - this is the description of an item
* **third group**:
+ **item 4** - this is the description of an item
* **fourth group**:
+ **item 5** - this is the description of an item
+ **item 6** - this is the description of an item
文本被插入到代码块之外。我想保留针织文档中线条之间的这个(均匀)间距,这样它就很容易阅读。否则看起来太压扁了。不幸的是,R Markdown 改变了间距,所以有些间距不均匀。我尝试使用尾随空格并使用 br 定义换行符,但没有任何改变。我当然可以在编织后手动编辑 html 文件,但这是一种蛮力方式。 R Markdown 必须有一些选项来处理它——但我自己无法弄清楚。非常感谢任何帮助。
您可以在 rmarkdown 文档的开头添加一个 css
标记,以指定您希望 html 输出如何解释行高:
```{css}
li {
line-height: 3;
}
...