Skip to content

Commit 51132f0

Browse files
committed
fix: export gnuplot
1 parent bebccac commit 51132f0

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

examples/gnuplot.gp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
reset
2+
set term pdfcairo color dashed enhanced size 15 cm, 10 cm
3+
4+
set output "gnuplot.pdf"
5+
6+
set key noauto bottom
7+
set xlabel "x"
8+
set ylabel "f(x)"
9+
10+
f(x) = x/(1 + x)
11+
12+
plot f(x) w l lw 2
13+
14+
set output

lib/grammars/doc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ const SCSS = Sass
103103
const Docs = {
104104
DOT,
105105
GNUPlot: gnuplot,
106+
gnuplot,
106107
"Graphviz (DOT)": Graphviz,
107108
HTML,
108109
LaTeX,

0 commit comments

Comments
 (0)