Graphics |
Setting Line and Text Characteristics
If you transfer your figures to Word or PowerPoint applications, you can set line and text characteristics to values recommended for those applications. The Figure Copy Template Preferences dialog box provides Word and PowerPoint options to make these settings, or you can set certain line and text characteristics individually.
You can change line and text characteristics:
Using the Graphical User Interface
To open Figure Copy Template Preferences, select Preferences from the figure window's File menu, and then click Figure Copy Template in the left pane.
Settings you can change in the Figure Copy Template Preferences dialog box are as follows:
Word or PowerPoint. Click Word or PowerPoint to apply settings recommended for MATLAB.
Text. Use options in the Text panel to modify the appearance of all text in the figure. You can change the font size, change color text to black and white, and change the font style to bold.
Lines. Use the Lines panel to modify the appearance of all lines in the figure. Options include
UIControls and axes. If your figure includes user interface controls, you can choose to show or hide them by clicking Show uicontrols. Also, to keep axes limits and tick marks as they appear on the screen, click Keep axes limits and tick spacing. To allow MATLAB to scale axes limits and tick marks based on the size of the printed figure, clear this box.
Note Changes you make using Page Setup affect the printed output only. They do not alter the figure displayed on your screen. |
Using MATLAB Commands
You can use the set
function on selected graphics objects in your figure to change individual line and text characteristics.
For example, to change line width to 1.8
and line style to a dashed line, use
To change the font size to 15
points and font weight to bold, use
textobj = findobj('type', 'text'); set(textobj, 'fontunits', 'points'); set(textobj, 'fontsize', 15); set(textobj, 'fontweight', 'bold');
Setting the Background Color | Setting the Line and Text Color |
© 1994-2005 The MathWorks, Inc.