脚注中的 bookdown table
bookdown table in footnote
可否在bookdown的脚注中加table?我尝试了以下代码,但 table 无法正确呈现。
This is footnote^[
|A |B |C |
|:---|:---|:---|
|1 |4 |1 |
|2 |5 |1 |
|3 |6 |0 |
].
这只是一个开始。下面的示例显示了如何使用 knitr
中的 kable
在脚注中获取 table 并使用 cat
生成硬编码降价 table例子。脚注的格式看起来不太好,需要进行一些调整。
---
title: "Untitled"
author: "eipi10"
date: "7/12/2017"
output: bookdown::pdf_document2
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(knitr)
```
This is a footnote.[^1]
[^1]: `r kable(mtcars[1:3,1:4])`
Here's another footnote.[^2]
```{r, results="asis"}
cat("[^2]:","|A |B |C |
|:---|:---|:---|
|1 |4 |1 |
|2 |5 |1 |
|3 |6 |0 |", sep="\n")
```
这是排除了一些白色 space 的输出文档:
这是输出类型为 bookdown::html_book
的输出:
可否在bookdown的脚注中加table?我尝试了以下代码,但 table 无法正确呈现。
This is footnote^[
|A |B |C |
|:---|:---|:---|
|1 |4 |1 |
|2 |5 |1 |
|3 |6 |0 |
].
这只是一个开始。下面的示例显示了如何使用 knitr
中的 kable
在脚注中获取 table 并使用 cat
生成硬编码降价 table例子。脚注的格式看起来不太好,需要进行一些调整。
---
title: "Untitled"
author: "eipi10"
date: "7/12/2017"
output: bookdown::pdf_document2
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(knitr)
```
This is a footnote.[^1]
[^1]: `r kable(mtcars[1:3,1:4])`
Here's another footnote.[^2]
```{r, results="asis"}
cat("[^2]:","|A |B |C |
|:---|:---|:---|
|1 |4 |1 |
|2 |5 |1 |
|3 |6 |0 |", sep="\n")
```
这是排除了一些白色 space 的输出文档:
这是输出类型为 bookdown::html_book
的输出: