Latex Interpreter To enable the LaTEX interpreter for text objects, set the Interpreter property to latex. For example, the following statement displays an equation in a figure at the point [.5 .5], and enlarges the font to 16 points. text('Interpreter','latex',... 'String','$$\int_0^x\!\int_y dF(u,v)$$',... 'Position',[.5 .5],... 'FontSize',16) -------------------------------------------------------- help latex Esim: >> H=hilb(3) H = 1.0000 0.5000 0.3333 0.5000 0.3333 0.2500 0.3333 0.2500 0.2000 >> latex(sym(H)) ans = \left(\begin{array}{ccc} 1 & \frac{1}{2} & \frac{1}{3}\\ \frac{1}{2} & \frac{1}{3} & \frac{1}{4}\\ \frac{1}{3} & \frac{1}{4} & \frac{1}{5} \end{array}\right)