summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/gnuplottex/example-pdf.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/gnuplottex/example-pdf.tex')
-rw-r--r--macros/latex/contrib/gnuplottex/example-pdf.tex21
1 files changed, 21 insertions, 0 deletions
diff --git a/macros/latex/contrib/gnuplottex/example-pdf.tex b/macros/latex/contrib/gnuplottex/example-pdf.tex
new file mode 100644
index 0000000000..6ed7eccb8e
--- /dev/null
+++ b/macros/latex/contrib/gnuplottex/example-pdf.tex
@@ -0,0 +1,21 @@
+\documentclass[a4paper]{article}
+
+\usepackage{gnuplottex}
+
+\begin{document}
+
+\begin{gnuplot}[terminal=pdf,terminaloptions={font ",10" linewidth 3}]
+ plot sin(x), cos(x)
+\end{gnuplot}
+
+\begin{gnuplot}[scale=0.8]
+ set grid
+ set title 'gnuplottex test $e^x$'
+ set ylabel '$y$'
+ set xlabel '$x$'
+ plot exp(x) with linespoints
+\end{gnuplot}
+
+\gnuplotloadfile[terminal=pdf]{example.gnuplot}
+
+\end{document}