Sequentially add figures to a word document using Report Generator
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Benjamin Green
il 26 Mag 2015
Risposto: Benjamin Green
il 26 Mag 2015
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 Commenti
Risposta accettata
Più risposte (1)
Sebastian Castro
il 26 Mag 2015
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 Commenti
Vedere anche
Categorie
Scopri di più su MATLAB Report Generator in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!