如何在我的 gnuplot 图中放大行标题
How to enlarge the line title in my gnuplot plot
set xtics
set ytics 0.025
set xlabel 'Aeroelastic cycles' font ",17"
set ylabel'Max deformation(m)' font ",17"
set grid
p 'deform20.conv' u 1:6 w lp title 'with tethers' , 'deform19.conv' u 1:6 w lp title 'without tethers'
这就是我的情节的代码,我想把我的台词的标题加大(有系绳,没有系绳)。
你能帮帮我吗?plot
请查看手册或在 gnuplot 控制台输入 help key
。
例如:
set key font ",20"
会放大你的密钥。
set xtics
set ytics 0.025
set xlabel 'Aeroelastic cycles' font ",17"
set ylabel'Max deformation(m)' font ",17"
set grid
p 'deform20.conv' u 1:6 w lp title 'with tethers' , 'deform19.conv' u 1:6 w lp title 'without tethers'
这就是我的情节的代码,我想把我的台词的标题加大(有系绳,没有系绳)。 你能帮帮我吗?plot
请查看手册或在 gnuplot 控制台输入 help key
。
例如:
set key font ",20"
会放大你的密钥。