Weird LaTeX result of $\tilde{}$ in R2025b version.
38 次查看(过去 30 天)
显示 更早的评论
I run the following codes in the same PC with different versions of MATLAB.
And the rendering results of the LaTeX equation are different.
x = 1:0.1:10;
y = sin(x);
figure;
plot(x,y)
xlabel('$\tilde{x}$','Interpreter','latex')
ylabel('$\tilde{y}$','Interpreter','latex')
In MATLAB R2020b, I obtain the proper format of \tilde{}:

However, the format in R2025b is weird:

How can I obtain the proper result of \tilde (like in R2020b) in R2025b?
1 个评论
Walter Roberson
2025-10-11,3:36
(Because I missed it initially:
The difference is that before the tilde over the x was smaller than the x and was centered over the x, but now the tilde is larger and is not centered over the x.)
采纳的回答
Star Strider
2025-10-11,1:55
That appears to be what the interpreter now defines as '\tilde'. I thought it might be defaulting to '\widetilde' , however that behaves as I would expect it to when I did that experiment.
x = 1:0.1:10;
y = sin(x);
figure;
plot(x,y)
xlabel('$\widetilde{x}$','Interpreter','latex')
ylabel('$\tilde{y}$','Interpreter','latex')
.
1 个评论
Sam Chak
2025-10-11,13:49
I tested. Even \hat{x} or
is now not centered over the x.
figure;
xlabel('$\hat{x}$', 'Interpreter', 'latex')
更多回答(1 个)
Steve Eddins
2025-10-11,12:35
It looks like graphics LaTeX renderer has changed. It is now producing something that looks similar to what is shown in the MATLAB editor:
The tilde is centered, but in a different sense than before. It is centered over the entire horizontal extent of the character. It appears to be uncentered because of the slanted italic font. Previously it was centered over the top of the character. Compare with \tilde{\text{x}}:
I agree with Star Strider's recommendation to contact MathWorks support. It would be useful to let them know that you regard this particular math rendering as incorrect.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

