dmenne
1
Quarto Version 1.8.27, Windows 11 Pdf-output using typist with default partials
Default caption looks like this:
Centered: The penguins
Centered: Table 1
Expected left aligned
Table 1: The penguins
---
title: Caption Show
---
```{r}
#| fig-cap: "The penguins"
#| label: tbl-penguins
knitr::kable(head(penguins))
#tinytable::tt(head(penguins))
```
The caption should read (left aligned):
Table 1: The penguins
dmenne
2
ChatGPT came to the help:
It should read tbl-cap, not fig-cap in the code block. The missing part is the left align.
dmenne
3
This code in typst-template gives: unexpected argument: align
#set figure.caption(
body-align: left,
)
Same for align:left
Any idea what's wrong ?
system
Closed
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.