How to insert aside notation for a code generated table? #2895
-
Hi, The only way I have found is to use a margin content Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
dragonstyle
Oct 18, 2022
Replies: 1 comment 6 replies
-
You can also use the class ---
title: Test Document
format: html
---
```{r}
#| warning: false
#| echo: false
library(dplyr)
library(scales)
library(gt)
#Load data and arrange in descending order of emissions
#Generate a gt table from head of data
head(mtcars) %>%
gt()
```
::: {.aside}
This is an aside regarding the table.
:::
|
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
aborruso
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can also use the class
aside
something like: