Combining multiple colors and latex commands as tick labels

11 次查看(过去 30 天)
I want to have some ticklabels as colored symbols and others as symbols like \bar{x}. These desires seem to be incompatible.
To get the colored symbols I need the 'tex' interpreter; to get \bar{x} I need the 'latex' interpreter.
The following example illustrates the problem. If you run it to the keyboard, you'll see the colored lsymbols together with \$\bar{x}\$
This seems to be because the tex intepreter doesn't know what to do with the \bar command. Same problem with \tilde, \hat, etc.
If you go past the keyboard and switch interpreters, you'll see but the colored symbols disappear, because it seems the latex interpreter doesn't know what to do with the colored symbols. Is there any way to reconcile this incompatibility? Thanks!
plot(1:2);
XTickLabels=get(gca,'XTickLabel');
XTickLabels{1}='$\bar{x}$';
XTickLabels{2}='\color{red}\lambda';
XTickLabels{3}='\color{blue}\theta';
set(gca,'XTickLabel',XTickLabels);
set(gca,'TickLabelInterpreter','tex');
keyboard;
set(gca,'TickLabelInterpreter','latex');

采纳的回答

Mehmed Saad
Mehmed Saad 2020-4-21
编辑:Mehmed Saad 2020-4-21
You can use this instead of that
plot(1:2);
x = gca;
pos = x.XTick;
poy = min(ylim)-0.05;
x.XTickLabel= ' ';
sybs = {'$\bar{x}$','\lambda','\theta','$\bar{x}$','\lambda','\theta','$\bar{x}$',...
'\lambda','\theta','$\bar{x}$','\lambda'};
intp = {'latex','tex','tex','latex','tex','tex','latex','tex','tex','latex','tex'};
for i=1:length(pos)
text(pos(i),poy,sybs{i},'Interpreter',intp{i},'Color',rand(1,3),'FontSize',15,...
'HorizontalAlignment','center','VerticalAlignment','baseline')
end
  1 个评论
Leo Simon
Leo Simon 2020-4-21
Perfect, thanks! This means i can abandon matlab's tick label implementation forever, which is very liberating!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Labels and Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by