customize_footnote_style
Modify footnote numbering format, start number, font name, and font size in Word documents using direct customization options.
Instructions
Customize footnote numbering and formatting in a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
font_name | No | ||
font_size | No | ||
numbering_format | No | 1, 2, 3 | |
start_number | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"font_name": {
"default": null,
"title": "Font Name",
"type": "string"
},
"font_size": {
"default": null,
"title": "Font Size",
"type": "integer"
},
"numbering_format": {
"default": "1, 2, 3",
"title": "Numbering Format",
"type": "string"
},
"start_number": {
"default": 1,
"title": "Start Number",
"type": "integer"
}
},
"required": [
"filename"
],
"type": "object"
}