I want to use Greek symbol epsilon "ɛ" in my legend and I use \epsilon. But it gives me "є" . I found a solution using char(949). But I can not use subscript with that. Actually I need to write "ɛ_21". Can anyone please help me?

 採用された回答

Star Strider
Star Strider 2016 年 2 月 18 日

4 投票

You just need to concatenate the special character with the subscript, and it works (at least in R2015b):
figure(1)
plot(1:10, rand(1,10))
legend([char(949) '_{21}'])

3 件のコメント

Hasib Rahman
Hasib Rahman 2016 年 2 月 18 日
Thanks Strider. It helps me alot!
Star Strider
Star Strider 2016 年 2 月 18 日
My pleasure!
Deke Cisco
Deke Cisco 2024 年 7 月 20 日
編集済み: Deke Cisco 2024 年 7 月 20 日
What if you what \varepsilon in the middle of a title? is that possible? Something like this?
title('\sigma_{longitudinal} - '[char(949) '_{longitudinal}'],'FontSize',14)
I'm not a fan of using 'Intepreter','LaTex' because it changes the font, so I'm curious if there is another way. Thank you!

サインインしてコメントする。

その他の回答 (2 件)

Chad Greene
Chad Greene 2016 年 2 月 18 日

1 投票

Try this:
title(' $\varepsilon_{21}$ ','interpreter','latex')

2 件のコメント

Chad Greene
Chad Greene 2016 年 2 月 18 日
Ah, you said legend. There's an extra step for legends:
l = legend('$\varepsilon_{21}$');
set(l,'interpreter','latex')
Hasib Rahman
Hasib Rahman 2016 年 2 月 18 日
Thanks Chad. It also works!

サインインしてコメントする。

Maria Erans Moreno
Maria Erans Moreno 2019 年 8 月 21 日

0 投票

I have a new question in this topic I need to put ɛ' and ɛ'' in two different graphs
I have tried [char(949) ' ' '] or [char(949) ' " ']
I have also tried with \varepsilon but it does not seem to work. Can somebody help me?

1 件のコメント

ztjona
ztjona 2022 年 5 月 26 日
You just change the interpreter to latex in any function you need (like title, ylabel, legend, etc.) and you can use both epsilons variations.
plot(rand(100, 1))
title('$\epsilon$ and $\varepsilon$', 'Interpreter','latex')

サインインしてコメントする。

質問済み:

2016 年 2 月 18 日

編集済み:

2024 年 7 月 20 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by