I have created an uiTable in Matlab. Now I need to write column headers and some cell data, which contain greek letters and subscripts. In text objects or plots I would just enable the TeX interpreter - or it is even the default setting. This does not work in an uiTable. How would I do this here? Maybe pre-formatting the strings somehow?
If there would be a solution, the next question will be: I need this interpreter only in some cells (and column headers). Some other need to be printed as the strings are given. So basically, I would even need an individual TeX interpreter setting per cell. But I know this would be solvable by the correct string escaping...
Minimal example:
h = figure();
t=uitable(h);
set(t,'ColumnName',{'test_1';'\alpha'})
This looks like this. But it should be rather with an index "1" and an alpha character.