Problem with "string scalar or character vector must have valid interpreter syntax"
Ältere Kommentare anzeigen
Hello saviors,
so, I'm trying to do a subplot title with an annotation 'textbox', and I need it to be latex the interpreter of the text, right?
This is how I'm trying to do it:
% Title
annotation('textbox', [0.23, 0.5, 0.5, 0.5], 'String',...
'This is my Title','EdgeColor','none','interpreter','latex',...
'FontWeight','bold', 'FontSize',14);
But then, matlab gives me a warning:
"Warning: Error updating TextBox.
String scalar or character vector must have valid interpreter syntax"
and the figure's title comes out with the default interpreter.
Any idea of what am I doing wrong, or how to solve this issue?
3 Kommentare
Walter Roberson
am 7 Feb. 2020
'$This is my Title$'
Maybe
Beatriz Sanchez
am 7 Feb. 2020
Walter Roberson
am 7 Feb. 2020
It works for me when I try in R2019a.
Antworten (1)
Karthi Ramachandran
am 7 Feb. 2020
0 Stimmen
I tried whatever u have added , Its working fine, also latex is not required because you are just using string , if you want italics
'\it{This is my Title}' will do the work . Adding a $ symbol with latex interpeter wont leave space between words , as that will be treated as a math variables
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!