init_presentation
Initialize a new Marp presentation project with directory structure, theme, and templates to create structured slide presentations with academic layouts.
Instructions
Initialize a new Marp presentation project with directory structure, theme, and templates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Brief description of the presentation | |
presentationSubtitle | No | Subtitle of the presentation | |
presentationTitle | Yes | Title of the presentation | |
projectName | Yes | Name of the presentation project | |
projectPath | Yes | Path where the project directory will be created |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Brief description of the presentation",
"type": "string"
},
"presentationSubtitle": {
"description": "Subtitle of the presentation",
"type": "string"
},
"presentationTitle": {
"description": "Title of the presentation",
"type": "string"
},
"projectName": {
"description": "Name of the presentation project",
"type": "string"
},
"projectPath": {
"description": "Path where the project directory will be created",
"type": "string"
}
},
"required": [
"projectPath",
"projectName",
"presentationTitle"
],
"type": "object"
}