-
在gnuplot 中输入中文
eg:
- 可以直接导入文件,避免了 linux 下 gnuplot 输入中文会乱码的问题。(如果linux支持中文)
在 'draw' 文件中写
set xlabel("中文")
打开gnuplot 载入即可。
gnuplotload 'draw'
或是可以改变源文
-
输出为eps时的中文乱码情况
可以先输出为pdf,再转为eps
pdf:
gnuplot > set term pdfcairo lw 2 font " Times New Roman, 8 "
gnuplot > set output "precipitation.pdf"
gnuplot > plot " precipitation.dat " u 1:2 w lp pt 5 title "北京" , \
> "123.dat" u 1:3 w lp pt 7 title "上海"
gnuplot > set output