set term png
set output "blog1.png"
set multiplot layout 1,2
set title "Plot 1"
plot sin(x) w l lw 2 lc 1
set title "Plot 2"
plot cos(x) w l lw 2 lc 2
とすると、set output "blog1.png"
set multiplot layout 1,2
set title "Plot 1"
plot sin(x) w l lw 2 lc 1
set title "Plot 2"
plot cos(x) w l lw 2 lc 2

これでは全体のtitleではなくて、それぞれの図のtitleになってしまう・・・
■ 参考サイト : gnuplot demo script: layout.dem
ここを見ると解決方法が載ってた
set term png
set output "blog1.png"
set multiplot layout 1,2 title "Total title" font ",14"
plot sin(x) w l lw 2 lc 1
plot cos(x) w l lw 2 lc 2
これでset output "blog1.png"
set multiplot layout 1,2 title "Total title" font ",14"
plot sin(x) w l lw 2 lc 1
plot cos(x) w l lw 2 lc 2

文字のフォントをいじって少し文字サイズを大きくした方が見やすそう
ランキング参加中です
↓クリックしていただけると嬉しいです〜