latex in text doesn't work
3 views (last 30 days)
Show older comments
Hi,
I've tried the following:
text(1, 1.5,sprintf('$\tilde{y_x}$= %.3f',5), ...
'Interpreter', 'LaTeX','fontsize', 30);
and the result is:

If I remove the tilde:
text(1, 1.5,sprintf('$y_x$= %.3f',5), ...
'Interpreter', 'LaTeX','fontsize', 30);
the result is:

I really appreciate any kind of help.
0 Comments
Accepted Answer
Star Strider
on 22 Jan 2023
text(1, 1.5,sprintf('$\\tilde{y_x}$= %.3f',5), ...
'Interpreter', 'LaTeX','fontsize', 30);
axis([0 2 0 2])
.
0 Comments
More Answers (1)
Matt J
on 22 Jan 2023
gca;
s=sprintf('$\\tilde{y}_x$ = %.3f',5)
text(0.5, 0.5,s, ...
'Interpreter', 'LaTeX','fontsize', 30);
0 Comments
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!