2

Yihui Xie 的 Bookdown 书https://bookdown.org/yihui/bookdown/tables.html很清楚交叉引用系统需要对非 kable 表进行适配。本节的最后一段很关键,但(在我的外行看来)是难以理解的,我希望能举一两个例子。

为了让事情稍微复杂一些,我的项目使用了 Rchunks,这可能会使任务更加复杂。

但是,有没有人有他们将共享的 bookdown 交叉引用代码示例(可能包括 Rchunks、Rmd 调用那些 Rchunks 或 \@ref(tab:...)),哪些不调用 kable?

4

1 回答 1

1

不完全确定您要问什么,但这里有一个手动键入的表格示例,可用于bookdown

R includes a lot of advanced mathematical functions. Table \@ref(tab:mathfunctions) shows a list of the most common functions.

Table: (\#tab:mathfunctions) Common mathematical functions in R.

| Function | Explanation | Example|
|----------|------------|-------------|
|   `abs(x)`  | Absolute value| `abs(-3) = 3`|
|   `sqrt(x)` | Square root | `sqrt(9) = 3` |
|   `log(x)`  | Natural logarithm | `log(10) = 2.303` |
|   `log10(x)`  | Base 10 logarithm | `log10(10) = 1` |
|   `log(x, base=2)`  | Base 2 logarithm | `log(10, base=2) = 3.322` |
|   `exp(x)`  | Exponential function | `exp(1) = 2.718` |


R also allows you to yada yada yada.
于 2017-09-16T19:37:52.240 回答