As the title says, I am trying to divide one page into two columns of a quarto document that is being rendered to pdf using typst.
I have tried these two options
Option 1: pandoc columns
:::: {.columns}
::: {.column width="60%"}
blablablablablabla
:::
:::{.column width="40%"}
blablablabla
:::
::::
Option 2: raw typst
# Here's the title ```{typst} #set page(columns: 2) ``` blablablablablabla ```{typst} #colbreak() ``` blablablabla
In both cases, the resulting typst code was
= Here's the title
<heres-the-title>
blablablablablabla
blablablabla
And hence, no columns.