12

I have a figure in Matlab with axes that I would like to label with latex symbols like $\delta$ on the x axis and $\epsilon$ on the y axis. How can I place these LaTeX notations into the axis labels?

Stefan Kottwitz
  • 231,401
Paul
  • 2,610

1 Answers1

17

when plotting in Matlab, set the text interpreter to be latex:

Figure1=figure(1);clf;
set(Figure1,'defaulttextinterpreter','latex');
plot(...);
xlabel('$\delta$');
ylabel('$\epsilon$');
mrsoltys
  • 565