Replies: 2 comments
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. 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.
-
With Powerpoint, customisation goes through a Template (https://quarto.org/docs/presentations/powerpoint.html#powerpoint-templates) You should at least try to to adapt a template for the Table style and see how it effects the output. Though it could be a limitation of what Pandoc allows for tweaking powerpoint. If you need advanced styling you could consider using some specific tools from computation language that knows how to output some content for Office Document. flextable R package is one of them, with help of the officeverse. It should be compatible with Quarto embedding gt is another option, that knows how to output to Docx, so maybe PPTX too, or you could generate complex layout tables, and export it to PNG to embed in PPTX. Python ecosystem could also have some options. Hope it helps |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Hi all, I've got a quarto presentation putting content into a PowerPoint template and for plots, titles, etc everything is working as planned, but for tables, it defaults to a standardised font, colours etc and I dont seem to be able to amend it? I've tried outputting the table via gt and kable but both generate errors, is there a better way?
Beta Was this translation helpful? Give feedback.
All reactions