Disp(...) - How to do only ONE word in bold/underlined letters

205 次查看(过去 30 天)
Hi,
I want to Display a text which shall look for Example like this:
Hello World!
How to do that? I know it is possible to put a whole text in bold, but is it possible also to put just one word of the sentence in bold?
Thanks
  3 个评论
madhan ravi
madhan ravi 2018-11-29
marcel langner's answer moved here for consistency
I want to display it in the command window
Not here :-)

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2018-11-29
  7 个评论
Walter Roberson
Walter Roberson 2018-11-29
Bold cannot be done without magic.
Glancing at the current version of the code I am not sure bold is even supported at the moment.
What can be done without magic is underlining, such as
fprintf('Will you say <a href="">hello</a>\n')
which will output the hello underlined.
Also without magic you can emit red, with slightly more work:
fprintf('Will you say '); fprintf(2, 'hello\n')
The extra work here is that you need to fprintf() to unit 2 only for the text that is to be red.

请先登录,再进行评论。

更多回答(1 个)

Peng
Peng 2019-8-8
why don't you use <strong> </strong> pair?
disp('Hello, <strong>World</strong>!');

类别

Help CenterFile Exchange 中查找有关 Argument Definitions 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by