@granmogul @emjonaitis I summarised possibilities to export #rstats #tables to Word / Excel here: https://www.adrianbruegger.com/post/quick-descriptive-tables/
#tinytable is a new package that also sounds promising
@adriangadientbruegger @granmogul @emjonaitis
Useful ! Thank you
@emjonaitis I use {flextable}. I don't think it handles Latex formatting, unfortunately.
https://stackoverflow.com/questions/48028069/latex-formatting-in-word-using-rmarkdown-and-flextable
@emjonaitis Not sure the font system in Word looks great, but this seemed to work for me:
```
library(flextable)
pars <- as_paragraph(as_equation("\\lparen\\textrm{A}\\beta_{42}\\rparen"))
ft <- flextable(head(mtcars)) |>
add_header_row(values = pars,
colwidths = 11, top = FALSE
)
ft
```
Let us know, which solution you preferes