recently i came across this package gnuplottex. But the problem is when i try to compile the below given code, i am not getting any output. Its just the text "there it is" thats appearing. Can anyone tell me what could be the problem.
Code: Select all
\documentclass[12pt,a4paper,draft]{article}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{gnuplottex}
\usepackage{graphicx}
\usepackage{latexsym}
\usepackage{keyval}
\usepackage{ifthen}
\usepackage{moreverb}
\begin{document}
there it is
\begin{gnuplot}[terminal=pdf]
set terminal latex
set grid
set title 'gnuplottex test'
set ylabel 'y'
set xlabel 'x'
plot exp(x) with linespoints
\end{gnuplot}
\end{document}
regards,
sgp.