简体   繁体   English

与Gnuplot的轴和标题

[英]Axes and title with Gnuplot

Please i ask how can modify tamisage.data using 1:2 with another label , 请问我怎么能用1:2修改tamisage.data和另一个标签, 在此输入图像描述

and how can i please change echantillon with échantillon ? 我怎么能用échantillon改变echantillon? Thank you. 谢谢。

To change the label, you need to use: 要更改标签,您需要使用:

plot ... title "New title" ...

To add an accent, you could use a special encoding: 要添加重音,您可以使用特殊编码:

set term ... enhanced  #need to use a terminal which supports enhanced text
set encoding iso_8859_1
plot sin(x) w lines title '{\351}foo'  #{\351} is 'e' with an accent.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM