add-slide-comparison
Create a comparison slide in PowerPoint presentations to contrast two concepts with structured titles and content. Define left and right side details to highlight differences effectively.
Instructions
Add a new a comparison slide with title and comparison content. Use when you wish to compare two concepts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
left_side_content | Yes | Content/body text of left concept. 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 | |
left_side_title | Yes | Title of the left concept | |
presentation_name | Yes | Name of the presentation to add the slide to | |
right_side_content | Yes | Content/body text of right concept. 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 | |
right_side_title | Yes | Title of the right concept | |
title | Yes | Title of the slide |
Input Schema (JSON Schema)
{
"properties": {
"left_side_content": {
"description": "Content/body text of left concept. 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"
},
"left_side_title": {
"description": "Title of the left concept",
"type": "string"
},
"presentation_name": {
"description": "Name of the presentation to add the slide to",
"type": "string"
},
"right_side_content": {
"description": "Content/body text of right concept. 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"
},
"right_side_title": {
"description": "Title of the right concept",
"type": "string"
},
"title": {
"description": "Title of the slide",
"type": "string"
}
},
"required": [
"presentation_name",
"title",
"left_side_title",
"left_side_content",
"right_side_title",
"right_side_content"
],
"type": "object"
}