add_footnote_after_text
Insert properly formatted footnotes after specific text in Microsoft Word documents. Specify the filename, search text, and footnote content to automatically add superscript references.
Instructions
Add a footnote after specific text with proper superscript formatting. This enhanced function ensures footnotes display correctly as superscript.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
footnote_text | Yes | ||
output_filename | No | ||
search_text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"footnote_text": {
"title": "Footnote Text",
"type": "string"
},
"output_filename": {
"default": null,
"title": "Output Filename",
"type": "string"
},
"search_text": {
"title": "Search Text",
"type": "string"
}
},
"required": [
"filename",
"search_text",
"footnote_text"
],
"type": "object"
}