title - Add title - MATLAB (original) (raw)

Syntax

Description

title([titletext](#btpi3rq-1-txt)) adds the specified title to the current axes or standalone visualization. Reissuing thetitle command causes the new title to replace the old title.

example

title([titletext](#btpi3rq-1-txt),[subtitletext](#mw%5Ffe84c3e3-9402-4075-b695-48b1ac4ec71a)) adds a subtitle underneath the title.

example

title(___,[Name,Value](#namevaluepairarguments)) modifies the title appearance using one or more name-value pair arguments. For example, 'FontSize',12 sets the font size to 12 points. Specify name-value pair arguments after all other input arguments. Modifying the title appearance is not supported for all types of charts.

example

title([target](#btpi3rq-1-target),___) adds the title to the specified target object.

example

[t](#btpi3rq-1-t) = title(___) returns the object used for the title. Use t to make future modifications to the title.

example

[[t](#btpi3rq-1-t),[s](#mw%5F3f76aef5-3e98-44fe-b781-3294e88e3631)] = title(___) returns the objects used for the title and the subtitle. Use t to modify the title, and use s to modify the subtitle.

example

Examples

collapse all

Create a figure and display a title in the current axes.

plot((1:10).^2) title('My Title')

Figure contains an axes object. The axes object with title My Title contains an object of type line.

You also can call title with a function that returns text. For example, the date function returns text with today's date.

Figure contains an axes object. The axes object with title 01-Feb-2025 contains an object of type line.

MATLAB® sets the output of date as the axes title.

Create a plot. Then create a title and a subtitle by calling the title function with two character vectors as arguments. Use the 'Color' name-value pair argument to customize the color for both lines of text. Specify two return arguments to store the text objects for the title and subtitle.

plot([0 1]) [t,s] = title('Straight Line','Slope = 1, y-Intercept = 0',... 'Color','blue');

Figure contains an axes object. The axes object with title Straight Line contains an object of type line.

Change the font size for the title to 16, and change the font angle for the subtitle to 'italic'.

t.FontSize = 16; s.FontAngle = 'italic';

Figure contains an axes object. The axes object with title Straight Line contains an object of type line.

Include the value of variable c in a title.

figure plot((1:10).^2) f = 70; c = (f-32)/1.8; title(['Temperature is ',num2str(c),' C'])

Figure contains an axes object. The axes object with title Temperature is 21.1111 C contains an object of type line.

Use the color modifier \color to change the color of characters following it from the previous color.

plot((1:10).^2) title(['\fontsize{16}black {\color{magenta}magenta '... '\color[rgb]{0 .5 .5}teal \color{red}red} black again'])

Figure contains an axes object. The axes object with title black blank magenta blank teal blank red black again contains an object of type line.

Create a plot, and define t as a character vector that includes LaTeX markup. Surround the markup with dollar signs ($). Then pass t to the title function, and set the Interpreter property to 'latex'.

x = 0:0.1:10; y = sin(x); dy = cos(x); plot(x,y,x,dy); t = '$sin(x)$ and ddxsin(x)\frac{d}{dx}sin(x)dxdsin(x)'; title(t,'interpreter','latex')

Figure contains an axes object. The axes object with title s i n leftParenthesis x rightParenthesis and StartFraction d over d x EndFraction s i n leftParenthesis x rightParenthesis contains 2 objects of type line.

Use the Name,Value pair 'Color','m' to set the color of the title to magenta.

figure plot((1:10).^2) title('Case number # 3','Color', 'm')

Figure contains an axes object. The axes object with title Case number # 3 contains an object of type line.

Use TeX markup to include Greek symbols in a title.

t = (0:0.01:0.2); y = exp(-25*t); figure plot(t,y) title('y = \ite^{\lambda t}','Color','b')

Figure contains an axes object. The axes object with title y = blank e toThePowerOf lambda blank t baseline contains an object of type line.

The 'Interpreter' property must be 'tex' (the default).

figure plot((1:10).^2) title('\alpha^2 and X_1')

Figure contains an axes object. The axes object with title alpha Squared baseline and X_1 contains an object of type line.

The superscript character, "^", and the subscript character, "_", modify the character or substring defined in braces immediately following.

Create a multiline title using a multiline cell array.

figure plot((1:10).^2) title({'First line';'Second line'})

Figure contains an axes object. The axes object with title First line Second line contains an object of type line.

Set the Interpreter property as 'none' so that the text X_1 is displayed in the figure as typed, without making 1 a subscript of X.

plot((1:10).^2) title('X_1','Interpreter','none')

Figure contains an axes object. The axes object with title X_1 contains an object of type line.

Starting in R2019b, you can display a tiling of plots using the tiledlayout and nexttile functions. Call the tiledlayout function to create a 2-by-1 tiled chart layout. Call the nexttile function to create the axes objects ax1 and ax2. Then plot data into each axes.

tiledlayout(2,1) ax1 = nexttile; plot(ax1,(1:10).^2) ax2 = nexttile; plot(ax2,(1:10).^3)

Figure contains 2 axes objects. Axes object 1 contains an object of type line. Axes object 2 contains an object of type line.

Add a title to each axes by passing ax1 and ax2 to the title function.

title(ax1,'Top Plot') title(ax2,'Bottom Plot')

Figure contains 2 axes objects. Axes object 1 with title Top Plot contains an object of type line. Axes object 2 with title Bottom Plot contains an object of type line.

Add a title to a plot and return the text object.

plot((1:10).^2) t = title('My Title');

Figure contains an axes object. The axes object with title My Title contains an object of type line.

Set the color of the title to red. Use dot notation to set properties.

Figure contains an axes object. The axes object with title My Title contains an object of type line.

Create a plot with a title. Get the current axes, and then align the title to the left edge of the plot box by setting the TitleHorizontalAlignment property of the axes to 'left'.

plot([0 2],[1 5]) title('Straight Line') ax = gca; ax.TitleHorizontalAlignment = 'left';

Figure contains an axes object. The axes object with title Straight Line contains an object of type line.

Center the title setting the TitleHorizontalAlignment property on the axes to 'center'.

ax.TitleHorizontalAlignment = 'center';

Figure contains an axes object. The axes object with title Straight Line contains an object of type line.

Input Arguments

collapse all

Title text, specified as a character vector, cell array of character vectors, string array, categorical array, or numeric value. Specify a value according to how you want the text to appear. This table lists the most common situations.

Appearance of Text Description of Value Example
One line of text Character vector or string scalar. txt = 'My Text'ortxt = "My Text"
Multiple lines of text Cell array of character vectors or string array. txt = {'First line','Second line'};ortxt = ["First line", "Second line"];
Text that includes a numeric variable Array that includes the number converted to achar array. Use num2str to convert the value. x = 42; txt = ['The value is ',num2str(x)];
Text that includes special characters such as Greek letters or mathematical symbols Array that includes TeX markup. For a list of supported markup, see theInterpreter property. txt = 'x ranges from 0 to 2\pi'

Note

Subtitle text, specified as a character vector, cell array of character vectors, string array, categorical array, or numeric value. Specify a value according to how you want the text to appear. This table lists the most common situations.

Appearance of Text Description of Value Example
One line of text Character vector or string scalar. txt = 'My Text'ortxt = "My Text"
Multiple lines of text Cell array of character vectors or string array. txt = {'First line','Second line'};ortxt = ["First line", "Second line"];
Text that includes a numeric variable Array that includes the number converted to achar array. Use num2str to convert the value. x = 42; txt = ['The value is ',num2str(x)];
Text that includes special characters such as Greek letters or mathematical symbols Array that includes TeX markup. For a list of supported markup, see theInterpreter property. txt = 'x ranges from 0 to 2\pi'

Note

Target for the title, specified as one of the following:

If you do not specify the target for the title, then the title function adds the title to the graphics object returned by the gca command.

Note

Some charts do not support modifying the title appearance, such as the color, or returning the text object as an output argument.

Name-Value Arguments

collapse all

Specify optional pairs of arguments asName1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: 'Color','red','FontSize',14 adds a title with red, 14-point font.

In addition to the following, you can specify other text object properties using Name,Value pair arguments. See Text Properties.

Font size, specified as a scalar value greater than 0 in point units. One point equals 1/72 inch. To change the font units, use the FontUnits property.

If you add a title or subtitle to an axes object, then the font size property for the axes also affects the font size for the title and subtitle. The title and subtitle font sizes are the axes font size multiplied by a scale factor. The FontSize property of the axes contains the axes font size. The TitleFontSizeMultiplier property of the axes contains the scale factor. By default, the axes font size is 10 points and the scale factor is 1.1, so the title and subtitle each have a font size of 11 points.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Thickness of the text characters, specified as one of these values:

MATLAB uses the FontWeight property to select a font from those available on your system. Not all fonts have a bold font weight. Therefore, specifying a bold font weight could still result in the normal font weight.

The TitleFontWeight property for the associated axes affects the FontWeight value for the title. Similarly, theSubtitleFontWeight property for the associated axes affects the FontWeight value for the subtitle.

Note

The 'light' and 'demi' font weight values have been removed. Use 'normal' instead.

Output Arguments

collapse all

Object used for the title, returned as one of these types of objects:

Object used for the subtitle, returned as a text object. Use this text object to modify properties of the subtitle after creating it. For a list of text object properties, see Text Properties. You also can access the subtitle through the Subtitle property of the axes object.

Tips

Version History

Introduced before R2006a