Mercurial > hg > octave-jordi
diff doc/interpreter/plot.txi @ 14456:05635e4c605a
Improve documentation for print().
* plot.txi
* print.m
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Sun, 11 Mar 2012 20:54:47 -0400 (2012-03-12) |
parents | 72c96de7a403 |
children | 9546bb28648c |
line wrap: on
line diff
--- a/doc/interpreter/plot.txi +++ b/doc/interpreter/plot.txi @@ -834,15 +834,22 @@ @cindex printing plots @cindex saving plots -The @code{print} command allows you to save plots in a variety of -formats. For example, +The @code{print} command allows you to send plots to you printer and +to save plots in a variety of formats. For example, + +@example +print -dpsc +@end example + +@noindent +prints the current figure to a color PostScript printer. And, @example print -deps foo.eps @end example @noindent -writes the current figure to an encapsulated PostScript file called +saves the current figure to an encapsulated PostScript file called @file{foo.eps}. @DOCSTRING(print)