Bug with Concatenated tables #10000
-
Hi, Here the example
Interestingly, this doesn't happen if i do not use layout-ncol="2". For Reference, I'm using Quarto 1.4.554 and here the rendered Document |
Beta Was this translation helpful? Give feedback.
Answered by
cderv
Jun 13, 2024
Replies: 1 comment 2 replies
-
It seems to be related to ---
title: "Untitled"
format: pdf
keep-tex: true
---
## Case 1
{{< lipsum 1 >}}
:::{#tbl-tm tbl-pos="H"}
:::{#tbl-tma}
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
Table1:
:::
:::{#tbl-tmb}
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
Table2:
:::
This table as `tbl-pos`
:::
{{< lipsum 1-2 >}}
:::{#tbl-tm2 tbl-pos="H"}
::: {layout-ncol=2}
:::{#tbl-tm2a}
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
Table1:
:::
:::{#tbl-tm2b}
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
Table2:
:::
:::
This table also as `tbl-pos` an a layout
:::
{{< lipsum 1-2 >}}
:::{#tbl-tm3 tbl-pos="H" layout-ncol=2}
:::{#tbl-tm3a}
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
Table1:
:::
:::{#tbl-tm3b}
| A | B | C |
|---|---|---|
| 1 | 2 | 3 |
Table2:
:::
This table as lost `tbl-pos`
:::
It seems the latest syntax should be working... 🤔 @cscheid do you confirm it should and this is an issue ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In fact the issue is because we are using
fig-pos
here, and nottbl-pos
quarto-cli/src/resources/filters/layout/latex.lua
Lines 79 to 87 in 50b4cf1
So this works