Examples

The thumbnail images are SVG files exported from PowerPoint with font adjustments. The text in the thumbnails may appear differently depending on the fonts installed on your system.

Hello!

Variables and Template file

Grid Layout

Sections

Charts

Text Styles

Data Table

Using Plotance as a Tool

Plotance can be used as a tool for generating .pptx files in Bash/PowerShell scripts. This example generates a catalog of Azure service icons. Due to license restrictions for Azure icons, we do not provide the resulting file.

The PowerShell script Generate-AzureIconsSlides.ps1 performs the following steps:

  1. Downloads the ZIP archive of icons and extracts the files.
  2. Downloads the Plotance executable.
  3. Generates the Markdown file.
  4. Converts the Markdown file to the presentation file.

On windows, you may need to adjust the execution policy to run PowerShell scripts:

# Save the current execution policy for the current shell session.
$oldExecutionPolicy = Get-ExecutionPolicy -Scope Process

# Set the policy to "RemoteSigned", allowing local scripts and signed downloaded scripts to run.
Set-ExecutionPolicy RemoteSigned -Scope Process

# Unblock the script to allow execution.
Unblock-File Generate-AzureIconsSlides.ps1

# Execute the script.
.\Generate-AzureIconsSlides.ps1

# Restore the original execution policy.
Set-ExecutionPolicy $oldExecutionPolicy -Scope Process