Gnuplot 如何在键和xlabel之间添加空格?

Gnuplot 如何在键和xlabel之间添加空格?,gnuplot,Gnuplot,x标签离钥匙太近。请问如何增加空间?谢谢一种方法是设置底部边距: set xlabel "{/:Italic m} (mag)" set key out horiz bot center 另一种代替更改bmargin的方法是在xlabel中添加一个空行\n reset session set multiplot layout 1,2 set xlabel "{/:Italic m} (mag)" set key out horiz bot center p

x标签离钥匙太近。请问如何增加空间?谢谢

一种方法是设置底部边距:

set xlabel "{/:Italic m} (mag)" 
set key out horiz bot center 

另一种代替更改
bmargin
的方法是在xlabel中添加一个空行
\n

reset session
set multiplot layout 1,2

    set xlabel "{/:Italic m} (mag)" 
    set key out horiz bot center 

    plot sin(x)

    set bmargin 5
    replot 

unset multiplot

一种方法是设置底部边距:

set xlabel "{/:Italic m} (mag)" 
set key out horiz bot center 

另一种代替更改
bmargin
的方法是在xlabel中添加一个空行
\n

reset session
set multiplot layout 1,2

    set xlabel "{/:Italic m} (mag)" 
    set key out horiz bot center 

    plot sin(x)

    set bmargin 5
    replot 

unset multiplot