How do I use a custom Word template for headers and footers in MATLAB Report Generator?

15 次查看(过去 30 天)
I have created a custom template in MS Word by editing the header/footer sections and saving the document as a DOTX template file. How do I use this template with MATLAB Report Generator?

采纳的回答

MathWorks Support Team
编辑:MathWorks Support Team 2019-11-11
To use a custom-made Word template, create a new document using the "mlreportgen.dom.Document" constructor and set the "templatePath" property to your DOTX file. Here is the documentation for a Document object:
And here is a simple example using a custom-made template file from MS Word within the MALTAB Report Generator API:
import mlreportgen.dom.*
d = Document('MyWordDoc', 'docx', 'CustomTemplate.dotx'); %assuming template is in same folder; otherwise, specify full path
open(d);
append(d,'Hello World'); % add some text to generate doc
close(d);
rptview(d.OutputPath)
This formatting for headers and footers will disappear if you are adding chapters to the report. To customize chapter page headers, see the following documented examples for creating and editing chapter templates:

更多回答(0 个)

产品


版本

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by