getCaptionReporter
类: mlreportgen.report.FormalImage
命名空间: mlreportgen.report
获取图像题注报告器
语法
reporter = getCaptionReporter(image)
说明
返回一个报告器,该报告器根据 reporter
= getCaptionReporter(image
) mlreportgen.report.FormalImage
的 Caption
属性生成正式的图像题注。题注可以是任何可以追加到 DOM 段落的 MATLAB® 或 DOM 对象。题注格式将覆盖模板中任何相应的格式。使用此 getCaptionReporter
方法来覆盖默认的题注格式。
输入参数
输出参量
示例
使用非默认题注样式
为您的题注创建一种不同于默认样式的样式。在运行此示例之前,创建一个名为 MyCaptionTemplate
的模板并自定义其 FormalImageCaption
样式。然后,使用 getCaptionReporter
方法和 TemplateSrc
属性来使用您的模板。
import mlreportgen.report.* rpt = Report(); image = FormalImage(); captionReporter = getCaptionReporter(image); image.TemplateSrc = 'MyCaptionTemplate'; add(rpt,image);
版本历史记录
在 R2017b 中推出