|
From: Ethan M. <merritt@u.washington.edu> - 2005-11-15 19:16:02
|
On Monday 14 November 2005 03:38 am, Jonathan Thornburg wrote:
> On Fri, 11 Nov 2005, Ethan A Merritt wrote:
> >>> set size 2,2
> > ^^^^^^^^^^^^^
> > Don't do that.
Please note that the original example that I responded to
was *not* using the PostScript driver. This was the
original complaint:
> set size 2,2
> set terminal png
> set output 'asdf.png'
> plot sin(x)
> set output
>
> Half of the tic marks are missing.
The png driver has always supported "set term png size xx, yy".
Nevertheless, since you ask....
> set term postscript enhanced eps solid color "Helvetica" 18
> set output 'geodesics.eps'
> set size 1.0, 1.5
> Is there
> an alternative mechanism that I've missed in _current_ gnuplot?
Step 1
set term post enh solid color "Helvetica" 18
set output 'geodesics.eps'
set size 0.5, 0.75
plot ...
set output
Step 2
add the string "EPSF-2.0" at the end of the first line of
geodesics.eps
No, I'm not saying this is convenient. That's why I'm
trying to push acceptance of the new patch to add explicit
size info to the "set term post" command.
--
Ethan A Merritt merritt@u.washington.edu
Biomolecular Structure Center
Mailstop 357742
University of Washington, Seattle, WA 98195
|