在 Rmd knit to pdf 中,我们发现我们可以用这样的双线结束表格:
tibble(v1 = c(1:2),v2 = c(1:2)) %>%
kable(booktabs = TRUE) %>%
kable_styling(position = "left") %>%
row_spec(2, hline_after = TRUE) %>%
row_spec(3, hline_after = TRUE)
当我们想将它用于在下一页继续的表时,使用:
tibble(v1 = c(1:2),v2 = c(1:2)) %>%
kable(booktabs = TRUE, longtable = TRUE) %>%
kable_styling(latex_options = c("repeat_header"),
position = "left") %>%
row_spec(2, hline_after = TRUE) %>%
row_spec(3, hline_after = TRUE)
我们在两行之间看到了一个不需要的 *。有谁知道 * 出现的原因,或者有如何摆脱 * 的建议,或者有更好的解决方案在表格末尾有一条双线?谢谢!