Replies: 2 comments
-
Have found a hacky way of doing it with r-stack, which seems to work:
::: :::{.fragment .absolute left=0}
::: :::
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Could you properly format your post to make it usable? You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```

The end.
```` |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
I am wanting to use kableExtra to place a small 2 x 2 table in a left column of the page and then have one column of the table change colour. Currently I have done this by duplicating the entire slide with the small change in the column colour code in the second slide. This works, but I want to do this several times and I can see it will mean a lot of duplication. I had a go with auto-animate and maybe it saves a bit of code but it leaves a pause in between the transition.
Is there a better way?
Data
::: {.column width="50%"}
:::
::: {.column width="50%"}
:::
Data
::: {.column width="50%"}
:::
::: {.column width="50%"}
:::
Beta Was this translation helpful? Give feedback.
All reactions