How do I obtain bold formatted mathematical expressions in MATLAB using LaTeX?

398 vues (au cours des 30 derniers jours)
I want to place mathematical expressions in bold format on my plot. I have tried to use the {\bf} and {\textbf} declarations, but I receive an error and the expression does not get displayed. I am using the following commands to obtain the bold mathematical expressions:
text('position',[0.5 0.5],'Interpreter','latex','String','$\bf{\alpha}$')
This gives me the following error:
Warning: Unable to interpret TeX string. Undefined control sequence.
The following command uses {\textbf} instead of {\bf}
text('position',[0.5 0.5],'Interpreter','latex','String','$\textbf{\alpha}$')
but this results in the following error:
Warning: Unable to interpret TeX string. Missing $ inserted.

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 27 Juin 2009
The problem with the above two statements is that they are trying to mix Text mode and Math mode in LaTeX. One way to obtain bold fonts in Math mode is to use the {\boldmath} declaration. The following statement demonstrates the use of{ \boldmath}:
text('position',[0.5 0.5],'Interpreter','latex','String','{\boldmath$\alpha$}')
It is important to note that these commands should not be used in math mode. Thus, a complicated mathematical expression, where only certain symbols are desired in bold font, may be obtained by entering and exiting Math mode as required. Following is an example:
text('position',[0.5 0.5], 'Interpreter','latex','String','$\|${\boldmath${\alpha}$}$\|$');
  1 commentaire
Sim
Sim le 28 Déc 2023
Modifié(e) : Sim le 28 Déc 2023
How to add a variable within "text", when using "boldmath"?
plot(1:10,1:10)
alpha = 3;
text(5,5,sprintf('{\\boldmath$\\alpha=%d$}',alpha),'Interpreter','latex','FontSize',20)

Connectez-vous pour commenter.

Plus de réponses (1)

Daniel Frisch
Daniel Frisch le 30 Avr 2021
Modifié(e) : MathWorks Support Team le 6 Jan 2023
With the LaTeX command
\mbox{}
you can also mix bold and non-bold symbols in one single equation:
text('position',[0.5 0.5],'Interpreter','latex','String','$\sqrt{ a \cdot \mbox{\boldmath $b$} }$')
Alternatively, you can use
\emph{\textbf x}
to achieve this:
text('position',[0.5 0.5],'Interpreter','latex','String','$\sqrt{ a \cdot \textbf{\emph b} }$')

Catégories

En savoir plus sur Mathematics and Optimization dans Help Center et File Exchange

Produits


Version

R14SP1

Community Treasure Hunt

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

Start Hunting!

Translated by