脚注中的减记表

时间:2017-07-13 05:22:10

标签: r r-markdown bookdown footnotes

是否有可能在记事本的脚注中放一张桌子?我尝试了以下代码,无法正确呈现表格。

This is footnote^[
|A   |B   |C   |
|:---|:---|:---|
|1   |4   |1   |
|2   |5   |1   |
|3   |6   |0   |
].

1 个答案:

答案 0 :(得分:1)

这只是一个开始。下面的示例显示如何使用kable中的knitr并使用cat生成硬编码的降价表来在脚注中获取表格,如示例所示。脚注的格式看起来并不那么好,需要进行一些调整。

---
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")
```

这是输出文档,其中包含一些空格:

enter image description here

enter image description here

这是带有bookdown::html_book作为输出类型的输出:

enter image description here