How do you put tilde (~) over a greek letter beta (β) in a chart title?
    12 次查看(过去 30 天)
  
       显示 更早的评论
    
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 个评论
回答(1 个)
  Walter Roberson
      
      
 2023-10-3
        title('$Scattering Phase Function, \tilde {\beta }$', 'interpreter', 'latex')
4 个评论
  Walter Roberson
      
      
 2023-10-5
				How about
title('$Scattering\,Phase\,Function, \widetilde {\beta }$', 'interpreter', 'latex')
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Labels and Annotations 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


