Quarto revealjs presentation - 2 columns with pause

Quatro allows to use pause (3 dots sep. by space: . . .). Unfortunately, when I split a page into 2 columns such approach doesn't work. Is it possible to force a pause within the columns? Pleas look at an example below:

:::: {.columns}

::: {.column width="50%"}

1. First

. . .

2. Second

:::

::: {.column width="50%"}

3. Third

. . .

```{r}
head(mtcars)

. . .

  1. Forth

:::

::::

You can use .fragment also inside a column. So in your example you would have in your first column:

::: {.column width="50%"}

1. First

:::  {.fragment}

2. Second

:::

:::

See also Quarto - Advanced Reveal

1 Like

Thank you very much. It works.
Anyway, It's a pity that every pause needs lots of typing.

1 Like

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.