PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.28.0
Code Block Pro – Beautiful Syntax Highlighting v1.28.0
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / samples / gnuplot.sample

gnuplot.sample in Code Block Pro – Beautiful Syntax Highlighting 1.28.0, at build/shiki/samples/gnuplot.sample

21 lines 466 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 set title 'Hello, world' # plot title
2 set xlabel 'Time' # x-axis label
3 set ylabel 'Distance' # y-axis label
4
5 # labels
6 set label "boiling point" at 10, 212
7
8 # key/legend
9 set key top right
10 set key box
11 set key left bottom
12 set key bmargin
13 set key 0.01,100
14
15 set nokey # no key
16
17 # arrow
18 set arrow from 1,1 to 5,10
19
20 # From https://alvinalexander.com/technology/gnuplot-charts-graphs-examples/
21