Initial release of Maemo 5 port of gnuplot
[gnuplot] / tutorial / eg4.plt
diff --git a/tutorial/eg4.plt b/tutorial/eg4.plt
new file mode 100644 (file)
index 0000000..2b7b9e3
--- /dev/null
@@ -0,0 +1,10 @@
+set terminal latex
+set output "eg4.tex"
+set format y "$%g$"
+set format x "$%.2f$"
+set title 'This is $\sin(x)$'
+set xlabel "This is the $x$ axis"
+set ylabel '$\sin(x)$'
+unset key
+set xtics -pi, pi/4
+plot [-pi:pi] [-1:1] sin(x)