entering a space that survives the latex interpreter
23 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Star Strider
2020-8-16
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Title 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!