quarto to ppt rendering--how to get a slide to use a particular layout #13918
Replies: 2 comments 1 reply
-
|
Could you properly format your post using code blocks for code and terminal outputs? Thanks. |
Beta Was this translation helpful? Give feedback.
-
|
From https://quarto.org/docs/presentations/powerpoint.html#slide-layouts
"PPTX writer" means Pandoc/Quarto. Is the
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
I am new to quarto and am trying to use it to create powerpoint presentation(s). I've read that quarto relies on the template.pptx file which contains the master slides/layouts to choose how to format the markdown. I have a slide-deck where I want to use a "Section Header" layout (and that is how it is named in template.pptx) but can't get quarto to use that layout. Can anyone tell me what I am doing wrong? The markdown looks like this:
title: "Module 1"
subtitle: "test qmd"
format:
revealjs:
theme: default
slide-number: true
chalkboard: true
preview-links: auto
footer: "test qmd"
width: 1280
height: 720
margin: 0.1
transition: slide
background-transition: fade
pptx:
reference-doc: ./template.pptx
highlight-style: tango
slide-level: 2
First Section {layout="Section Header"}
Authentication, Authorization, and Service Catalog
::: {.notes}
[pause 1.0s]
Blah, blah, blah, blah
:::
What I end up with is a slide that will have the text but not the section header layout (which has a background graphic).
TIA
Beta Was this translation helpful? Give feedback.
All reactions