How to bold, italics sentence using fprintf in matlab?

171 visualizaciones (últimos 30 días)
How to bold , italics sentence using fprintf in matlab

Respuesta aceptada

Walter Roberson
Walter Roberson el 1 de Dic. de 2011
There is no mechanism for that, just as there is no mechanism for color or underlining or blinking.
fprintf() is for transferring characters, and characters do not have inherent attributes or font properties.
Having said that: some output destinations interpret the characters they receive, and do so in such a way that character or font information can be attached.
The above are for output to the command window. If you happen to be outputting to a terminal emulator (e.g., if you are running matlab -nodesktop) then you may be able to take advantage of the ANSI sequences for text attributes: http://en.wikipedia.org/wiki/ANSI_escape_code#graphics

Más respuestas (1)

Ryan Friedman
Ryan Friedman el 1 de Mayo de 2019
You can print bold only (not italics) using fprinf as shown below.
fprintf('Hello <strong> bold </strong> world.\n')
>> Hello bold world.
  8 comentarios
Steven
Steven el 24 de Nov. de 2023
Works nicely in the MATLAB console window (R2023b)
Unfortunatly when using publish() to create a pdf or html document the same example apears as 'Hello <strong> bold </strong> world.' in the document.
Victoria Serrano
Victoria Serrano el 30 de En. de 2024
I'm having the same issue when using publish() to create the PDF. Has anyone found the solution?

Iniciar sesión para comentar.

Categorías

Más información sobre Debugging and Analysis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by