Skip to content

Instantly share code, notes, and snippets.

@elipousson
Created March 20, 2024 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elipousson/8ba0ae285d601c3eb2bfdbd29c02b162 to your computer and use it in GitHub Desktop.
Save elipousson/8ba0ae285d601c3eb2bfdbd29c02b162 to your computer and use it in GitHub Desktop.
---
format: typst
---
```{r}
library(tinytable)
x <- mtcars[1:4, 1:5]
```
```{r}
tt(x, caption = "Table caption")
```
```{r}
#| tbl-cap: "Table caption"
tt(x)
```
See @tbl-tiny
```{r}
#| label: tbl-tiny
#| tbl-cap: "Table caption"
tt(x)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment