Mercurial > hg > octave-lyh
comparison scripts/plot/print.m @ 9042:97aa01a85ea4
Merge documentation cleanup changes to main branch.
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Wed, 25 Mar 2009 18:13:08 -0700 |
parents | cc916241e811 dbd0c77e575e |
children | b06dc393ac42 |
comparison
equal
deleted
inserted
replaced
9019:12ca81f1fa99 | 9042:97aa01a85ea4 |
---|---|
20 ## -*- texinfo -*- | 20 ## -*- texinfo -*- |
21 ## @deftypefn {Function File} {} print (@var{filename}, @var{options}) | 21 ## @deftypefn {Function File} {} print (@var{filename}, @var{options}) |
22 ## @deftypefnx {Function File} {} print (@var{h}, @var{filename}, @var{options}) | 22 ## @deftypefnx {Function File} {} print (@var{h}, @var{filename}, @var{options}) |
23 ## Print a graph, or save it to a file | 23 ## Print a graph, or save it to a file |
24 ## | 24 ## |
25 ## @var{filename} defines the file name of the output file. If no | 25 ## @var{filename} defines the file name of the output file. If no |
26 ## filename is specified, output is sent to the printer. | 26 ## filename is specified, output is sent to the printer. |
27 ## | 27 ## |
28 ## @var{h} specifies the figure handle. If no handle is specified | 28 ## @var{h} specifies the figure handle. If no handle is specified |
29 ## the handle for the current figure is used. | 29 ## the handle for the current figure is used. |
30 ## | 30 ## |
31 ## @var{options}: | 31 ## @var{options}: |
32 ## @table @code | 32 ## @table @code |
33 ## @item -P@var{printer} | 33 ## @item -P@var{printer} |
34 ## Set the @var{printer} name to which the graph is sent if no | 34 ## Set the @var{printer} name to which the graph is sent if no |
35 ## @var{filename} is specified. | 35 ## @var{filename} is specified. |
36 ## @item -color | 36 ## @item -color |
37 ## @itemx -mono | 37 ## @itemx -mono |
38 ## Monochrome or colour lines. | 38 ## Monochrome or color lines. |
39 ## @item -solid | 39 ## @item -solid |
40 ## @itemx -dashed | 40 ## @itemx -dashed |
41 ## Solid or dashed lines. | 41 ## Solid or dashed lines. |
42 ## @item -portrait | 42 ## @item -portrait |
43 ## @itemx -landscape | 43 ## @itemx -landscape |
115 ## | 115 ## |
116 ## @item -F@var{fontname} | 116 ## @item -F@var{fontname} |
117 ## @itemx -F@var{fontname}:@var{size} | 117 ## @itemx -F@var{fontname}:@var{size} |
118 ## @itemx -F:@var{size} | 118 ## @itemx -F:@var{size} |
119 ## @var{fontname} set the postscript font (for use with postscript, | 119 ## @var{fontname} set the postscript font (for use with postscript, |
120 ## aifm, corel and fig). By default, 'Helvetica' is set for PS/Aifm, | 120 ## aifm, corel and fig). By default, 'Helvetica' is set for PS/Aifm, |
121 ## and 'SwitzerlandLight' for Corel. It can also be 'Times-Roman'. | 121 ## and 'SwitzerlandLight' for Corel. It can also be 'Times-Roman'. |
122 ## @var{size} is given in points. @var{fontname} is ignored for the | 122 ## @var{size} is given in points. @var{fontname} is ignored for the |
123 ## fig device. | 123 ## fig device. |
124 ## @end table | 124 ## @end table |
125 ## | 125 ## |
126 ## The filename and options can be given in any order. | 126 ## The filename and options can be given in any order. |
127 ## @end deftypefn | 127 ## @end deftypefn |