Initial release of Maemo 5 port of gnuplot
[gnuplot] / tutorial / eg2.plt
diff --git a/tutorial/eg2.plt b/tutorial/eg2.plt
new file mode 100644 (file)
index 0000000..e2a3cd5
--- /dev/null
@@ -0,0 +1,8 @@
+set terminal latex
+set output "eg2.tex"
+set size 5/5., 4/3.
+set format xy "$%g$"
+set title 'This is a plot of $y=sin(x)$'
+set xlabel 'This is the $x$ axis'
+set ylabel 'This is\\the\\$y$ axis'
+plot [0:6.28] [0:1] sin(x)