这是this question的后续,基本上,我的想法是创建一个虚拟表,它不产生任何可见的输出,但产生一个标题和一个引用供使用,我得到了一个半工作的结果:
---
title: "Example"
format: html
---
This is already something (@tbl-test), but the output does not look nice.
: Another table test {#tbl-test}
------ ------
```{r}
#| label: tbl-iris
#| tbl-cap: Example DT table
DT::datatable(head(iris))
输出并不完美,有一个表格的存根,人们可能会误认为是某种下划线,但我得到了我的交叉引用,标题,表格列表等。有没有一个简单的方法,使这个实际的表完全消失?也许一些css魔术?
1条答案
按热度按时间flvlnr441#
可以设置
display: none
来删除表体。This is something (@tbl-test), and (@tbl-test1) and @tbl-test_anotherone
: Another table test {#tbl-test}
: Another table test-01 {#tbl-test1}
: Another table test-anotherone {#tbl-test_anotherone}