how to insert "Filled Triangle" as text box in a Matlab figure?

11 次查看(过去 30 天)

I would like to insert a filled triangle as a text box on a Matlab figure. I am using the following code. But it is giving an error as : Warning: Error updating TextBox. Character vector must have valid interpreter syntax: $\blacktriangle$

% Create textbox
annotation(figure1,'textbox',...
    [0.142384388807069 0.314861460957179 0.0372916053019146 0.0730478589420656],...
    'Color',[0 0 1],...
    'String','$\blacktriangle$',...
    'LineStyle','none',...
    'Interpreter','latex',...
    'FontSize',24,...
    'FitBoxToText','off');

回答(1 个)

Rik
Rik 2018-4-22

You need the amssymb package to render this symbol. With some digging you should be able to add this package to your Matlab copy, but you should be aware that in that case your code is no longer portable to another copy of Matlab, unless that one has amssymb as well.

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by