gnuplot: subtitle with smaller fontsize

后端 未结 2 1245
深忆病人
深忆病人 2021-02-08 05:24

Does somebody know how you can insert a subtitle with a smaller fontsize in gnuplot?

Currently, the way I create a subtitle is by using \\n in the title. A

2条回答
  •  情深已故
    2021-02-08 06:10

    You can use label. You have to experiment a bit with its proper placement by at:

    set title "Big Title"
    set label "Subtitle" at screen 0.5, 0.9 font "Arial,8"
    plot sin(x)
    

提交回复
热议问题