get_section_content
Extracts specific section content from a LaTeX file in an Overleaf project, enabling targeted analysis and retrieval of document segments using file path and section title.
Instructions
Get content of a specific section
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.) | |
sectionTitle | Yes | Title of the section |
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"
},
"sectionTitle": {
"description": "Title of the section",
"type": "string"
}
},
"required": [
"filePath",
"sectionTitle"
],
"type": "object"
}