Accented characters with interpreter latex
42 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dan
el 13 de Dic. de 2020
Comentada: Walter Roberson
el 13 de Dic. de 2020
Hi, I am trying to insert an accented letter in the title with 'interpreter latex' option, but I obtain this warning: 'String scalar or character vector must have valid interpreter syntax'. How can I fix it?
title('Intensità','Interpreter','latex')
0 comentarios
Respuesta aceptada
Walter Roberson
el 13 de Dic. de 2020
See the chart at https://tex.stackexchange.com/questions/8857/how-to-type-special-accented-letters-in-latex
title('Intensit\`a','Interpreter','latex')
2 comentarios
Walter Roberson
el 13 de Dic. de 2020
Be careful on entering the opposite accent such as
-- as it is the usual apostrophe, it ends character vectors and you have to double it. Or you can use " " delimiters

title('Intens\''it\`a','Interpreter','latex')
Más respuestas (1)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!