How to write Latex in GUI's label?
조회 수: 19 (최근 30일)
이전 댓글 표시
I want to write latex in Matlab's GUI labels. For example:

I have tried \theta, and with $ on both sides, but it does not work. Could someone please tell me how to solve this question? Thanks.
댓글 수: 2
Adam Danz
2021년 1월 25일
In 2020b it doesn't exist from the design view options but the property does exist and is editable from the code.
답변 (1개)
Adam Danz
2021년 1월 25일
편집: Adam Danz
2021년 1월 25일
From the startup function of your app, set the Edit Field Label's interpreter property to latex. You may need to reassign the string too.
function startupFcn(app)
app.thetaPoint1EditFieldLabel.Interpreter = 'latex';
app.thetaPoint1EditFieldLabel.Text = '$\theta$ of point';
end
Result:

댓글 수: 4
Adam Danz
2021년 2월 11일
편집: Adam Danz
2021년 2월 11일
App designer gets more support and features with every new release since it became available. I don't know when the interpreter property was first supported for this object but I do know it works in r2020b and the result is shown in my answer. You could update to r2020b. Otherwise, there is no solution I'm aware of.
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!