get_sections
Extract all sections from a LaTeX file to analyze and understand its structure. Requires the file path and integrates with Overleaf projects via Git for efficient document processing.
Instructions
Get all sections from a LaTeX file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the LaTeX file | |
gitToken | No | Git token (optional, uses env var) | |
projectId | No | Project ID (optional, uses env var) | |
projectName | No | Project name (default, project2, etc.) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Path to the LaTeX file",
"type": "string"
},
"gitToken": {
"description": "Git token (optional, uses env var)",
"type": "string"
},
"projectId": {
"description": "Project ID (optional, uses env var)",
"type": "string"
},
"projectName": {
"description": "Project name (default, project2, etc.)",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}