summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/gnuplottex/example.tex
blob: 951445c6186575c84aae4bbe569b0f2f49219e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
\documentclass[a4paper]{article}

\usepackage{gnuplottex}

\begin{document}

\begin{gnuplot}[scale=.8]
	plot sin(x), cos(x)
\end{gnuplot}

\begin{gnuplot}
	set grid
	set title 'gnuplottex test $e^x$'
	set ylabel '$y$'
	set xlabel '$x$'
	plot exp(x) with linespoints
\end{gnuplot}

\end{document}