Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #592
| From | sfeam <sfeam@users.sourceforge.net> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: EEPIC + multiplot results in wrong picture env. |
| Followup-To | comp.graphics.apps.gnuplot |
| Date | 2011-09-21 19:17 -0700 |
| Organization | gnuplot development team |
| Message-ID | <j5e5sp$sge$1@dont-email.me> (permalink) |
| References | <22961972.199.1316627193860.JavaMail.geo-discussion-forums@yqaa12> |
Followups directed to: comp.graphics.apps.gnuplot
Andre wrote:
> I have the following script:
>
> set term eepic dashed rotate small 9
> set size 3.4/5., 2/3.
> set multiplot layout 2,1
> set lmargin at screen 0.1
> set rmargin at screen 1.0
> set bmargin at screen 0.55
> set tmargin at screen 0.9
> [...]
>
> As you can see the \path paints outside the box and therefore my
> entire graphic is messed up.
Your various commands are fighting against each other.
The "set margin at screen" commands win.
The other size / layout commands are to help the program lay out
the plot automatically. But when you say "set margin at screen XXX"
that overrides any automatic calculation and says
"put the edge of the plot exactly there!".
Now there may well be some additional problem, either a bug in
the eepic driver or a bad interaction between other commands.
One thing I note is that the "set size" command probably isn't
having the effect you intended, since it comes after the
"set term" command.
The eepic terminal has recently gained a new option
"set term eepic ... size XX,YY" to match other terminals,
but you don't have that available in version 4.4.2
Ethan
> Adjusting the \begin{picture} manually to
> the (approx) coordinates used works for me right now.
>
> gnuplot 4.4 patchlevel 2
Back to comp.graphics.apps.gnuplot | Previous | Next — Previous in thread | Next in thread | Find similar
EEPIC + multiplot results in wrong picture env. Andre <andre.rauh@googlemail.com> - 2011-09-21 10:46 -0700
Re: EEPIC + multiplot results in wrong picture env. sfeam <sfeam@users.sourceforge.net> - 2011-09-21 19:17 -0700
Re: EEPIC + multiplot results in wrong picture env. Andre <andre.rauh@googlemail.com> - 2011-09-22 07:22 -0700
csiph-web