summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/gnuplottex/example.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-07-12 22:28:45 +0000
committerKarl Berry <karl@freefriends.org>2006-07-12 22:28:45 +0000
commita4f3458a22ca0198a289e764fb0447104be8ddb7 (patch)
tree0c1685a26b01889b097e7b559b1325b61f94de93 /Master/texmf-dist/doc/latex/gnuplottex/example.tex
parent6da5bb042c15587fad03d6f4cf308d711348306c (diff)
new package gnuplottex
git-svn-id: svn://tug.org/texlive/trunk@1824 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/gnuplottex/example.tex')
-rw-r--r--Master/texmf-dist/doc/latex/gnuplottex/example.tex19
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/gnuplottex/example.tex b/Master/texmf-dist/doc/latex/gnuplottex/example.tex
new file mode 100644
index 00000000000..525f540d7a2
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/gnuplottex/example.tex
@@ -0,0 +1,19 @@
+\documentclass[a4paper]{article}
+
+\usepackage[pdf]{gnuplottex}
+
+\begin{document}
+
+\begin{gnuplot}[width=.3\textwidth]
+ plot sin(x)
+\end{gnuplot}
+
+\begin{gnuplot}
+ set grid
+ set title 'gnuplottex test'
+ set ylabel 'y'
+ set xlabel 'x'
+ plot exp(x) with linespoints
+\end{gnuplot}
+
+\end{document}