フィルターのクリア

Is it possible to use an interpreter in UIdropdown items names?

11 ビュー (過去 30 日間)
Gianpietro Battocletti
Gianpietro Battocletti 2022 年 2 月 8 日
コメント済み: Jasmine Poppick 2023 年 8 月 16 日
Hi,
I am designing an app with the App Designer. I want to add a drop down menu to choose the size of a capacitor. The menu items have to correspond to the order of magnitude of the capacity, i.e. F, mF, μF, nF. Is there a way to have the "μ" written as a symbol? I can't find an option to use the latex or tex interpreter to have the symbol appear as desired. Thanks in advance for any help.
  3 件のコメント
Adam Danz
Adam Danz 2022 年 4 月 19 日
@Ampt Ampt I suggest copying your comment to the Answers section.
Gianpietro Battocletti
Gianpietro Battocletti 2022 年 4 月 20 日
@Ampt Ampt thanks a lot, will try this solution ASAP in my project!

サインインしてコメントする。

採用された回答

Jasmine Poppick
Jasmine Poppick 2023 年 3 月 17 日
Starting in R2023a you can use addStyle to specify an interpreter for a drop-down component or specific drop-down items. You can use an interpreter value of 'tex' or 'latex'.
fig = uifigure;
dd = uidropdown(fig, ...
Items=["F","mF","\muF","nF"], ...
Value = "\muF");
s = uistyle(Interpreter="tex");
addStyle(dd,s)
  5 件のコメント
Mohammed Azharuddin
Mohammed Azharuddin 2023 年 8 月 16 日
@Jasmine Poppick Found a way to use interpreter latex for the label of dropdown field, double clicking / selecting the label text displays an option for interpreter. However, is there an option for the items styling or does it exists only in 2023a?
One followup question another topic, Is there a way the checkbox field text can be interpreted in latex? Thank you.
Jasmine Poppick
Jasmine Poppick 2023 年 8 月 16 日
@Mohammed Azharuddin For label UI components, the ability to interpret text as LaTeX or HTML using the Interpreter property was added in R2021a. Styling of individual drop-down items using addStyle, including specifying an interpreter, color, or alignment, is only available starting in R2023a.
For check boxes, currently you cannot specify an interpreter for the check box text. However, as a workaround, you can delete the text from the check box Text property, and instead create a separate label UI component next to the check box. You can then specify an interpreter for the Label object.

サインインしてコメントする。

その他の回答 (1 件)

Ampt Ampt
Ampt Ampt 2022 年 4 月 21 日
For characters with a corresponding Alt keyboard sequence you can type the Alt code. For µF just type ALT+230 and F.
If you are running on Windows, you can also use the Character Map to select and copy characters from there. This works well as long as all the characters you need are from the same set - the characters will show correctly as long as you pick the matching font name in the FontName dropdown menu.

カテゴリ

Help Center および File ExchangeLive Scripts and Functions についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by