context-2020-gpdemo.gp /size: 162 b    last modification: 2025-02-21 11:03
1set format xy "$%g$"
2
3set title  'This is a plot of $y=\sin(x)$'
4set xlabel 'This is the $x$ axis'
5set ylabel 'This is the $y$ axis'
6
7plot [0:6.28] [0:1] sin(x)
8
9