LaTeX Interpreter and Blackboard bold (\mathbb{}) for text
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (4)
Seongmun Jung
el 1 de Nov. de 2021
1 voto
Use ℝ (Unicode Decimal Code ℝ)
ylabel('\alpha \in ℝ')
or
ylabel(sprintf("\\alpha \\in %c", 8477))
1 comentario
Walter Roberson
el 1 de Nov. de 2021
Note: you can only use unicode characters in R2015b or later, and you have to be using interpreter 'none' or interpreter 'tex' . It does not work with interpreter 'latex'
Leo
el 27 de Dic. de 2011
0 votos
1 comentario
Honglei Chen
el 27 de Dic. de 2011
Hi Leo,
I've never done that so I don't know if it can be done. I could be wrong but my guess is no as it is not part of basic TeX or LaTeX and MATLAB only supports only a basic subset of TeX or LaTeX.
I would suggest you to contact technical support and get an authoritative answer on this.
HTH
Leo
el 28 de Dic. de 2011
Editada: Walter Roberson
el 2 de Ag. de 2015
0 votos
1 comentario
Honglei Chen
el 28 de Dic. de 2011
Hi Leo,
Good to know this trick, thanks for sharing.
Demetrio Rodriguez Tereshkin
el 4 de Mayo de 2016
0 votos
Or just add asmath package to matlab-latex: http://stackoverflow.com/questions/12250919/how-do-you-use-the-latex-blackboard-font-in-matlab
Categorías
Más información sobre LaTeX en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!