図の中に図を描きたい グラフ中の空いた部分に,別の小さな図を描いてみましょう.よくあるの は,図の込み入った部分の拡大図を作るものです.複数の図を同時に描くので, ここではmultiplotを使います.全体の図の サイズを1としたときに,図中の図の縦横を0.5にしたものを作ります. multiplotに入った後,まず全体の図を描きます. gnuplot> set xrange [ 0 : 20 ] gnuplot> set yrange [ 0 : 6 ] gnuplot> set xtics 5 gnuplot> set ytics 1 gnuplot> set multiplot multiplot> set origin 0.0,0.0 multiplot> set size 1.0,1.0 multiplot> plot "file.dat" u 1:2:3 notitle wi