The horizontal key displays in vertical in GNUPLOT

后端 未结 2 1970
鱼传尺愫
鱼传尺愫 2021-01-23 14:48

In gnuplot, I used the horizontal key, but it shows me vertical on the output screen. I tried every alternative but found difficult to do that.

set         


        
2条回答
  •  被撕碎了的回忆
    2021-01-23 15:15

    Each of your 3 plots generates a separate key. The multiplot layout places all 3 plots on the same page, but still each one is only 1/3 of the page in width and that sets the maximum horizontal size of its key. In the example you re-position each key to the same place at the bottom of the page so that they lie exactly on top of each other. This does not change their size or shape, only their position.

    What you can do instead is to manually place each title on the page without reference to the auto-generated key. In order to leave room for the manually placed key entries you can give explicit multiplot layout margins.

    set multiplot layout 1,3 margins .1, .9, .3, .9
    set key
    plot    tan((pi/180)*x)   title "Analytical"   at screen .25,.1 w l  ls 1,\
            tan(2*(pi/180)*x) title "Observed"     at screen .50,.1 w lp ls 2 ,\
            tan(3*(pi/180)*x) title "Experimental" at screen .75,.1 w lp ls 3
    unset key
    plot ...
    plot ...
    unset multiplot
    

    Placing a box around the manually positioned titles is a separate question.

提交回复
热议问题