Sequentially add figures to a word document using Report Generator
12 次查看(过去 30 天)
显示 更早的评论
I have a script which produces a series of figures which I would like to be placed into a word document. Each figure will be on its own page. Further I would like to be able to add a title below the figure within word which is indexed based on the number of figures in the document, and is formated to a particular style such that when the word document is linked to a master document the figure titles are picked up for creating a figure list.
Matlab r2014b
Report Generator
Office 2010
Win7
0 个评论
采纳的回答
更多回答(1 个)
Sebastian Castro
2015-5-26
What I've done in my work is save the figure as an image and add it to my report. Furthermore, you can pick the title text from the axes as follows:
docPart = DocumentPart(docType);
myAxes = gca;
append(docPart, Text(myAxes.Title.String));
myFig = gcf;
print(myFig,'-djpeg','test1');
test1img = Image('test1.jpg');
append(docPart, test1img);
- Sebastian
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!