原生 markdown table + 设置 属性 如 table 放置,移除 table 行
Native markdown table + set property such as table placement, removal of table lines
我想在 bookdown pdf
左侧渲染下面的 table
| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
如何删除所有分割线
通过将您的 table 放入 markdown
块中并添加 2 个参数 fig.align="left"
和 results='asis'
来实现这一点
---
title: "Untitled"
author: "Daniel"
date: "10/30/2020"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{markdown, fig.align="left", results='asis'}
| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
```
把table放在左边。将以下行放在 index.rmd
中
header-includes:
- |
```{=latex}
\usepackage[margins=raggedright]{floatrow}
```
然后就可以画出table如下
| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
不过您将无法冻结列宽
我想在 bookdown pdf
左侧渲染下面的 table| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
如何删除所有分割线
通过将您的 table 放入 markdown
块中并添加 2 个参数 fig.align="left"
和 results='asis'
---
title: "Untitled"
author: "Daniel"
date: "10/30/2020"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{markdown, fig.align="left", results='asis'}
| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
```
把table放在左边。将以下行放在 index.rmd
中header-includes:
- |
```{=latex}
\usepackage[margins=raggedright]{floatrow}
```
然后就可以画出table如下
| Right | Left | Default | Center |
|------:|:-----|---------|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
不过您将无法冻结列宽