entering a space that survives the latex interpreter
19 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Leo Simon
el 16 de Ag. de 2020
Respondida: Star Strider
el 16 de Ag. de 2020
I'm trying to include blank spaces in the title to a plot. When I run the title string through the latex intepreter, it kills the spaces. Example below illustrates
Is there a way to prevent this? Thanks very much, Leo
plot(1:10)
Title='$\theta$ .';
title(Title,'Interpreter','latex')
0 comentarios
Respuesta aceptada
Star Strider
el 16 de Ag. de 2020
Try this:
plot(1:10)
Title=sprintf('$\\theta%s.$', repmat('\ ',1,37));
title(Title,'Interpreter','latex')
It may not be the most efficient option, however it appears to do what you want.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Title 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!