Hi,
using the following script, I would expect
both plots to be of the same size (3cm x 3cm).
Instead, the second one is much larger.
Is this a bug or a user error?
Bastian
-----
set term post size 3cm, 3cm
set outp "test1.ps"
plot x
unset outp
set outp "test2.ps"
set termoption font ",8"
plot x
unset outp
|