add-slide-title-content
Add a new slide with a title and formatted content to an existing PowerPoint presentation. Specify the presentation name, slide title, and structured content with main and sub-points for clear organization.
Instructions
Add a new slide with a title and content to an existing presentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content/body text of the slide. Separate main points with a single carriage return character.Make sub-points with tab character.Do not use bullet points, asterisks or dashes for points.Max main points is 4 | |
presentation_name | Yes | Name of the presentation to add the slide to | |
title | Yes | Title of the slide |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content/body text of the slide. Separate main points with a single carriage return character.Make sub-points with tab character.Do not use bullet points, asterisks or dashes for points.Max main points is 4",
"type": "string"
},
"presentation_name": {
"description": "Name of the presentation to add the slide to",
"type": "string"
},
"title": {
"description": "Title of the slide",
"type": "string"
}
},
"required": [
"presentation_name",
"title",
"content"
],
"type": "object"
}