How do you put tilde (~) over a greek letter beta (β) in a chart title?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to title my graph but when I use the following code, my resulting graph is titled \tilde{β} and doesn't represent the actual tilde
title('Scattering Phase Function, \tilde {\beta }')
xlabel('Angle')
ylabel('per sr')
legend('DI', 'Phyto', 'Lafayette', 'Elizabeth')
0 Kommentare
Antworten (1)
Walter Roberson
am 3 Okt. 2023
title('$Scattering Phase Function, \tilde {\beta }$', 'interpreter', 'latex')
4 Kommentare
Walter Roberson
am 5 Okt. 2023
How about
title('$Scattering\,Phase\,Function, \widetilde {\beta }$', 'interpreter', 'latex')
Siehe auch
Kategorien
Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
