add_footnote_to_document
Insert footnotes into specified paragraphs of a Word document. Provide filename, paragraph index, and footnote text to enhance document context and referencing.
Instructions
Add a footnote to a specific paragraph in a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
footnote_text | Yes | ||
paragraph_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"footnote_text": {
"title": "Footnote Text",
"type": "string"
},
"paragraph_index": {
"title": "Paragraph Index",
"type": "integer"
}
},
"required": [
"filename",
"paragraph_index",
"footnote_text"
],
"type": "object"
}