Skip to content

crossref table error with paged table #2712

@hao203

Description

@hao203

Hello,
There is a bug.

In my quarto book file 03-tidy_data.qmd
the code block is

#| label: tbl-birth
#| tbl-cap: "Birth table"
load("dataset/births.rda") 
births

_quarto.yml settings

format:
  html:
    theme: cosmo
    df-print: paged

@tbl-birth

when I render the book, there is a warning

WARNING: 03-tidy_data.html: Unable to resolve crossref @tbl-birth
Watching files for changes

The crossref is available when I change the code block using kable(), but it's not paged

#| label: tbl-birth
#| tbl-cap: "Birth table"
births <- import("dataset/births.rda")  
knitr::kable(births)

I want both of crossref and paged available.

Metadata

Metadata

Assignees

Labels

needs-reproIssues that are blocked until reporter provides an adequate reproductiontablesIssues with Tables including the gt integration

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions