add_endnote_to_document
Insert an endnote into a specific paragraph of a Word document by providing the filename, paragraph index, and endnote text. Simplifies document annotation and referencing within Microsoft Word.
Instructions
Add an endnote to a specific paragraph in a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endnote_text | Yes | ||
filename | Yes | ||
paragraph_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endnote_text": {
"title": "Endnote Text",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"paragraph_index": {
"title": "Paragraph Index",
"type": "integer"
}
},
"required": [
"filename",
"paragraph_index",
"endnote_text"
],
"type": "object"
}