The following minimal example shows how I make a plot using gnuplot to the "epslatex" terminal and want to include it in my document. However, the axis texsts do not show.. What might be wrong? Gnuplot makes a .tex file and an .eps file. I should have thought it was going to use both when converting to PDF. This is pdflatex by the way.
==GNUPLOT==
set format "$%g$"
set xlabel "Temperature $T_t$"
set ylabel "Difference $|f(s')-f(s)|$"
set xrange [0.1:20]
set yrange [1:20]
set zrange [0:1]
set terminal epslatex
set output "prob.eps"
splot exp(-y/x) title ""
==latex==
\documentclass[10pt,a4paper]{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\includegraphics{prob}
\end{document}


\includegraphics. You need to include the.texfile, which will in turn include the EPS. Try\include{prob}or\input{prob}. – Jake Jun 7 '12 at 11:19