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

402 ビュー (過去 30 日間)
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.

採用された回答

MathWorks Support Team
MathWorks Support Team 2009 年 6 月 27 日
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 件のコメント
Sim
Sim 2023 年 12 月 28 日
編集済み: Sim 2023 年 12 月 28 日
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)

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

その他の回答 (1 件)

Daniel Frisch
Daniel Frisch 2021 年 4 月 30 日
編集済み: MathWorks Support Team 2023 年 1 月 6 日
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} }$')

カテゴリ

Help Center および File ExchangeMathematics and Optimization についてさらに検索

製品


リリース

R14SP1

Community Treasure Hunt

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

Start Hunting!

Translated by