Quarto tbl-cap-location 不会与 gtsummary 一起位于顶部

问题描述 投票:0回答:1

我很困惑为什么在 RStudio 中使用四开时无法让表格标题转到顶部


    ---
    title: "test caption location"
    format: html
    ---
    
    ```{r}

    #| tbl-cap-location: top
    
    data(mtcars)
    
    library(gtsummary)
    library(knitr)
    
    mtcars %>%
      select(mpg, cyl, disp) %>%
      tbl_summary() |> 
      modify_caption("This is a test")
    ```

看起来超级简单,但渲染后它总是在底部: html render results

是不是已经过时了或者什么?

r quarto gtsummary
1个回答
0
投票

我需要从网站更新四开。我一运行当前版本,它就把表格标题位置移动到顶部。但是,现在表格标题无法再到达底部。可能的错误?

© www.soinside.com 2019 - 2024. All rights reserved.