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

457 views (last 30 days)
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.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 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 Comment
Sim
Sim on 28 Dec 2023
Edited: Sim on 28 Dec 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)

Sign in to comment.

More Answers (1)

Daniel Frisch
Daniel Frisch on 30 Apr 2021
Edited: MathWorks Support Team on 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} }$')

Categories

Find more on Mathematics and Optimization in Help Center and File Exchange

Products


Release

R14SP1

Community Treasure Hunt

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

Start Hunting!