MATLAB: LaTeX Interpreter and Blackboard bold (\mathbb{}) for text

black boardlatexmathbb

Hello
I'm creating a MATLAB plot to be exported in a LaTeX document in eps format.
For instance, I have the following ylabel command that works properly:
ylabel('$\alpha \in R$','Interpreter','latex')
However, if I try to use black board style in the text for the letter R this will not work:
ylabel('$\alpha \in \mathbb{R}$','Interpreter','latex')
I understand that the mathbb requires the amsmath package but I'm wondering if there is any other way to have that letter R in black board sytle.
Thanks in advance.
L

Best Answer

If that is all you want to do, you can use the default tex interpreter.
ylabel('\alpha in \bf{R}')
Related Question