I am creating a Quarto document in Rstudio with format set to typst in the yaml. When I make a table the header is at the bottom of the table, but I want it at the top. It is easy to do when the format is set to html or pdf, but not when the format is set to typst. I really prefer the look of the typst pdf.
| Statistic | Low | High |
|-----------|-------|-------|
| RMSEA | 0.059 | 0.308 |
| CFI | 0.781 | 0.993 |
| TLI | 0.561 | 0.985 |
| SRMR | 0.014 | 0.116 |
| Omega | 0.827 | 0.908 |
| Alpha | 0.826 | 0.907 |
: Range of Fit Statistics and Reliabilities across 126 Short Forms of the UWES-9
The yaml of the document looks like this:
title: "Untitled"
format: typst
editor: visual
Any guidance will be highly appreciated.
Deon