Matlab问题:使用(la)tex在图表的标题中显示数学公式

时间:2011-07-12 16:10:38

标签: matlab

  

可能重复:
  How can I create this figure title in MATLAB?

我想在图中的m文件中写下数学公式,例如

让我们说我定义

d = 1;

在MATLAB代码中。我想用标题如

绘图
title('The Solution of Equations $f(x,t)=0$ when the Parameter is %d')

请告知。

1 个答案:

答案 0 :(得分:0)

title(text('Interpreter','latex',...
'String','The solution is: $$\int_0^x\!\int_y dF(u,v)$$',...
'Position',[.5 .5],...
'FontSize',16))