when using listdlg is it possible to use tex characters in the ListString?

2 visualizaciones (últimos 30 días)
This is what i am trying to do :
(I would like ''\sigma_x'' to turn into σx )
listdlg('ListString' , {'Von Mises Stress', '\sigma_x' , '\sigma_y'})
But the result i get is:

Respuestas (2)

Stephen23
Stephen23 el 31 de Dic. de 2021
Editada: Stephen23 el 31 de Dic. de 2021
With recent MATLAB versions and OSs you can just use σ:
listdlg('ListString' , {'Von Mises Stress', 'σ_x' , 'σ_y'})
E.g. R2018a:

Walter Roberson
Walter Roberson el 31 de Dic. de 2021
listdlg('ListString' , {'Von Mises Stress', '<HTML>&sigma;<sub>x</sub>' , '<HTML>&sigma;<sub>y</sub>'})

Categorías

Más información sobre Stress and Strain en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by