How to use latex interpreter for xticklabels?

191 visualizzazioni (ultimi 30 giorni)
Mr M.
Mr M. il 27 Giu 2017
Commentato: Dima il 22 Dic 2024
How to use latex interpreter for xticklabels or yticklabels?

Risposta accettata

Adam
Adam il 27 Giu 2017
Modificato: Adam il 27 Giu 2017
hAxes.TickLabelInterpreter = 'latex';
assuming you are using >= R2014b, where hAxes is your axes handle

Più risposte (2)

Stefan Ineichen
Stefan Ineichen il 13 Nov 2018
Modificato: Stefan Ineichen il 13 Nov 2018
Insert the code before plotting.
set(groot,'defaultAxesTickLabelInterpreter','latex');
Further, add these to set other useful interpreter to latex.
set(groot,'defaulttextinterpreter','latex');
set(groot,'defaultLegendInterpreter','latex');
  1 Commento
krishna teja
krishna teja il 28 Gen 2019
is there a way to change default font size for axes tick labels?

Accedi per commentare.


Ali Afruzi
Ali Afruzi il 13 Apr 2022
You can set 'latex' or 'tex' for only one of your axis plot.
Using TickLabelInterpreter, one can define latex for only x-axis and tex for y-axis. for example:
x=1:10;
y=rand(10,1);
plot(x,y)
xaxisproperties= get(gca, 'XAxis');
xaxisproperties.TickLabelInterpreter = 'latex'; % latex for x-axis
yaxisproperties= get(gca, 'YAxis');
yaxisproperties.TickLabelInterpreter = 'tex'; % tex for y-axis

Categorie

Scopri di più su Labels and Annotations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by