How can I set bar XTick labels with tex Interpreter in linux matlab?

1 vue (au cours des 30 derniers jours)
assionvi  hove kouevi
assionvi hove kouevi le 9 Fév 2016
In MATLAB windows I used
set(gca,'XTickLabel',{'G', 'K_0','D_{FC^+}', 'K_r','D_{HS^-}','K_d','D_{H_2S}','C^0_{H_2S}'}, 'FontSize', 25, 'LineWidth',2.5)
to set the bar XTick labels with tex Interpreter and it work.
But when I run the code in Linux, it doesn't work(see the figure ). How can I fix it?

Réponses (1)

Star Strider
Star Strider le 9 Fév 2016
I don’t run Linux, but one possibility is that you have to specify the interpreter. See if specifying it works:
set(gca,'XTickLabel',{'G', 'K_0','D_{FC^+}', 'K_r','D_{HS^-}','K_d','D_{H_2S}','C^0_{H_2S}'}, 'FontSize', 25, 'LineWidth',2.5, 'Interpreter','tex')
  3 commentaires
Walter Roberson
Walter Roberson le 9 Fév 2016
R2014b and later has an XTickInterpreter property. Earlier versions had no equivalent so you had to text() items into place if you needed special strings.
assionvi  hove kouevi
assionvi hove kouevi le 9 Fév 2016
Modifié(e) : assionvi hove kouevi le 9 Fév 2016
Thanks to you all,
you are right Walter Roberson, the problem is the version of my MATLAB(R2014a).

Connectez-vous pour commenter.

Catégories

En savoir plus sur Graphics Object Properties dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by