Table caption in Quarto/typst

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

ChatGPT came to the help:

It should read tbl-cap, not fig-cap in the code block. The missing part is the left align.

This code in typst-template gives: unexpected argument: align

#set figure.caption(
  body-align: left,
)

Same for align:left

Any idea what's wrong ?

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.