add-slide-section-header
Add a section header slide to your PowerPoint presentation with a title and optional subtitle using this tool. Specify the presentation name to organize content effectively.
Instructions
This tool adds a section header (a.k.a segue) slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
header | Yes | Section header title | |
presentation_name | Yes | Name of the presentation to add the slide to | |
subtitle | No | Section header subtitle |
Input Schema (JSON Schema)
{
"properties": {
"header": {
"description": "Section header title",
"type": "string"
},
"presentation_name": {
"description": "Name of the presentation to add the slide to",
"type": "string"
},
"subtitle": {
"description": "Section header subtitle",
"type": "string"
}
},
"required": [
"presentation_name",
"header"
],
"type": "object"
}