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

14 ビュー (過去 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 月 12 日
編集済み: 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