String scalar or character vector must have valid interpreter syntax.

조회 수: 9 (최근 30일)
Matthew Worker
Matthew Worker 2020년 5월 14일
편집: Ameer Hamza 2020년 5월 14일
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!

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 5월 14일
편집: Ameer Hamza 2020년 5월 14일
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');

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by