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,
)