You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is nothing that LaTeXStrings can do about this — it doesn't do any rendering, it just sends the \underline{x} to the plot backend. So your are limited by whatever math formatting is supported by the math display of your plot backend.
using Plots
using LaTeXStrings
x = [1,2,3,4,5]
y = x .^2
plot(x,y,label = L"\underline{x}")
This code will give an error
but instead of \underline if I am using \overline work.
That is
plot(x,y,label = L"\overline{x}")
But I need \underline.
Please solve my problem.
Thanks in advance
The text was updated successfully, but these errors were encountered: