String scalar or character vector must have valid interpreter syntax.

9 vues (au cours des 30 derniers jours)
Matthew Worker
Matthew Worker le 14 Mai 2020
Modifié(e) : Ameer Hamza le 14 Mai 2020
I want to add:
ylabel('$\mid H(f) \mid$ (kg{s^{-1}}/kg{s^{-1}})', 'interpreter', 'latex');
Where I want the first part inside the two $$ to be in latex format and the rest in default font.
The issue seems to be while adding the superscript '^'.
For example, it works by adding:
ylabel('$\mid H(f) \mid$ (kg/s)', 'interpreter', 'latex');
Thank you in advance!

Réponses (1)

Ameer Hamza
Ameer Hamza le 14 Mai 2020
Modifié(e) : Ameer Hamza le 14 Mai 2020
Mixing tex font and default fone with latex interpreter in a single text box does not work. You may try it with tex interpreter, which does not require the use of $$ symbols.
ylabel('\mid H(f) \mid (kg{s^{-1}}/kg{s^{-1}})', 'interpreter', 'tex');

Catégories

En savoir plus sur Printing and Saving dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by