我尝试根据对this question的回答来做set yabel={/*2.0 MyLabel}
,但这只是在ylabel上打印了这些文字。
最佳答案
您可以简单地通过使用font
参数来指定字体选项,如下所示:
set xlabel "x-units" font "Times-Roman,12"
set ylabel "y-units" font "Times-Roman,12"
或者,您也可以不使用任何一个参数,例如,如果要设置字体大小而不是字体,请说:
set xlabel "x-units" font ",12"
set ylabel "y-units" font ",12"
gngnlot官方文档can be found here,我还建议您查看http://www.gnuplotting.org/
关于gnuplot - 如何在gnuplot中增加ylabel的字体大小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18119830/