I am using epslatex to create a nice plots for my thesis. But I have a problem. I give the following instructions to create a plot:
Code: Select all
set terminal epslatex color
set logscale y
set format y "10^{%T}"
plot 'data.dat' w l lw 3 not
set output 'figure.tex'
replot
set output
Code: Select all
\begin{figure}[b!]
\begin{center}
\resizebox{4in}{!}
{
\input{figure}
}
\captionsetup{font=small, labelfont=bf, labelsep=period}
\caption[Small caption]{LARGE CAPTION}
\label{figure}
\end{center}
\end{figure}
Code: Select all
\put(1606,704){\makebox(0,0)[r]{\strut{}10^{-5}}}%
Code: Select all
\put(1606,704){\makebox(0,0)[r]{\strut{}$10^{-5}$}}%
I understand that the symbol % is a special character in latex, but I don't know how to solve this shrinking in the image and make the plots without change the code every time for all the plots...
I appreciate very much if someone can help me with this problem.
Thanks in advance.
Maria