I am preparing a powerpoint slide presentation
<code>---
title: Test
author: Me
---
# Slide 1
- This can be regular font size
# Slide 2
% How do I shrink the fontsize of this table?
| Left align | Right align | Center align |
|:---------------------------| ----------------------:|:----------------------:|
| This | This| This |
| column | column | column |
| will | be | aligned |
| left | right | center |
</code>
<code>---
title: Test
author: Me
---
# Slide 1
- This can be regular font size
# Slide 2
% How do I shrink the fontsize of this table?
| Left align | Right align | Center align |
|:---------------------------| ----------------------:|:----------------------:|
| This | This| This |
| column | column | column |
| will | be | aligned |
| left | right | center |
</code>
---
title: Test
author: Me
---
# Slide 1
- This can be regular font size
# Slide 2
% How do I shrink the fontsize of this table?
| Left align | Right align | Center align |
|:---------------------------| ----------------------:|:----------------------:|
| This | This| This |
| column | column | column |
| will | be | aligned |
| left | right | center |
1
For PowerPoint output, you need to create a custom reference.pptx
file, modify it in PowerPoint and then supply it to pandoc with pandoc --reference-doc reference.pptx
From the Manual:
You can also modify the default
reference.pptx
: first run
pandoc -o custom-reference.pptx --print-default-data-file reference.pptx
, and then modifycustom-reference.pptx
in MS PowerPoint (pandoc will use the layouts with the names
listed above).
2