How to Use the Latex \bm for Math Symbols in ylabel?
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Say we want to display x as a bold italics math symbol in ylabel. Is this possible?
0 Kommentare
Akzeptierte Antwort
dpb
am 25 Nov. 2021
Can do in regular text as
ylabel('$$\textit{\textbf{X}}$$','Interpreter','latex')
I don't think anybody has ever figured out how to use other packages with the TMW-implemented LaTeX in MATLAB for the math part...
1 Kommentar
dpb
am 26 Nov. 2021
Further experimentation shows that
ylabel("$$X(\omega) = \sum_{n=-\infty}^{\infty} x[n] e^{-j\omega n}$$","Interpreter","latex")
is rendered correctly so at least some of the math expressions are available.
But, while it does not error,
ylabel("$$\boldmath{X}$$",'Interpreter','latex')
has no discernible effect on the output
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!