Latex in plot title with variables

47 visualizaciones (últimos 30 días)
Peppe
Peppe el 23 de Sept. de 2017
Respondida: Peppe el 23 de Sept. de 2017
Hi, I'm running Matlab R2014b. Trying to make a nice plot with :
title([' Slip regulation \lambda for K_{\sigma} = ',num2str(Ksigma),' K = ', num2str(K),' and \epsilon = ', num2str(theta)]);
Tried even with
title([' Slip regulation \lambda for K_{\sigma} = ',num2str(Ksigma),' K = ', num2str(K),' and \epsilon = ', num2str(theta), 'Interpreter','tex' ]);
Still no luck. Would someone help me out ? Thanks in advanced.

Respuesta aceptada

Peppe
Peppe el 23 de Sept. de 2017
Solved it using:
mytitleText = [' Slip regulation \lambda for K_{\sigma} = ',num2str(Ksigma),' K = ', num2str(K),' and \epsilon = ', num2str(theta)];
title(mytitleText,'Interpreter','tex' );

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by