Skip to content
Discussion options

You must be logged in to vote

I made some progress.
Inserting the following chunk

save.image("phase2.Rdata")
knit_exit()

I found a way to create a kind of breakpoint.
Moving it through the Quarto file I could spot the chunk(s) that would abort the rendering.
Apparently (in contrast with the example in https://quarto.org/docs/authoring/cross-references.html ) the

#| tbl-subcap: true

option was causing the problem!
If I remove true and specify the sub captions adding

   - a
   - b

the rendering completes.

---
title: "Reproducible Quarto Document"
format: pdf
editor: visual
---

```{r}
#| label: tbl-tables
#| tbl-cap: "Tables"
#| tbl-subcap:
#|  - a
#|  - b
#| layout-ncol: 2

library(knitr)
kable(head(cars))
kab…

Replies: 3 comments 6 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@mcanouil
Comment options

mcanouil May 1, 2024
Collaborator

Comment options

You must be logged in to vote
5 replies
@mcanouil
Comment options

mcanouil May 1, 2024
Collaborator

@cscheid
Comment options

@mcanouil
Comment options

mcanouil May 1, 2024
Collaborator

@mcanouil
Comment options

mcanouil May 1, 2024
Collaborator

@cscheid
Comment options

Answer selected by r-scotti
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
crossref tables Issues with Tables including the gt integration figures computations
3 participants