MATLAB: How to make Greek letters with Latex interpreter

greeklatex

I want to write "Omega hat" (the greek letter Omega, with a hat on it) in a plot title and lables. for "u hat", I simply use \it\^{u} with Latex interpreter. But I cannot make Greek letters like Omega by "Latax" interpreter. the only way is using "tex" interpreter, which does not support "hat". Does anyone has any idea? How can we make Greek letters with Latex interpreter?

Best Answer

Here is an example:
text('Interpreter','latex','String','$$\hat{\beta}$$','Position',[.5 .5],'FontSize',16)
or for xlabels:
xlabel('$$\hat{\alpha}$$','Interpreter','latex','FontSize',16)
Related Question