On Fri, Oct 23, 2015 at 2:04 PM, theozh <th...@gm...> wrote:
>
> Help says:
> "Note that in multiplot mode, replot can only reproduce the most recent
> component plot, not the full set."
>
> So does this mean if I have numerous lengthy plot commands in a
> multiplot I have to type/enter/modify them all again if e.g. I want to
> produce output on several terminal devices?
Yes.
> Maybe somebody knows a trick to enter/modify the plot commands only once?
If you are using the wxt or qt terminals in gnuplot 5, then there is a
widget at the top of the plot window that will save the current plot
window contents to any of several formats (png pdf svg).
Otherwise you need to put all the commands into a separate file and
load that file multiple times. E.g.
set term post; set output 'foo.ps'
load 'foo.gp'
set term pdf; set output 'foo.pdf'
load 'foo.gp'
> Thanks for any hints,
> Theo.
|