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
I have justed add a conversion functionality in UnicodeCompletion which basically converts between \alpha and α, which is quite useful in LaTeX documents. However, while I am writing a julia script file, I usual have
mu =0
sigma =1
z =sqrt(mu/sigma)
It would be interesting to convert this to
μ =0
σ =1
z =√(μ/σ)
So the questions are
Shall we ship this functionality in this package or a separate package?
Obviously, not all symbols should be supported, besides greeks, what symbols should be included?