I am trying to include some gnuplot-generated figures using the epslatex terminal, which creates an .eps file and a .tex file. The way to include these figures in the document is writing
\include{./figure}
These files include all the commands that set the tics, the legend and so on. My question is: is it possible to change the size of the whole set of elements included in figure.tex without modifying that file?
Something like this:
\resizebox{\linewidth}{!}{
\begin{figure}
\include{./presion_posicion2}
\caption{Diagrama presión-posición para el ensayo 2}
\label{fig:ensayo2}
\end{figure}
}
\scaleboxor\resizebox? – Display Name Dec 26 '10 at 15:41\scaleboxonly when I have a lot of images and want all scale down by the same factor and no one is wider than\linewidth. When I need some images as wide as the linewidth or part of it, then\resizeboxis the better choice. – Dec 26 '10 at 15:59\includestarts with a new page, which is useful for chapters in books and has its own auxiliary file. It also cannot be nested.\inputcan be used in the preamble and elsewhere and be nested because it does nothing else then replacing itself with the code of the given file name. – Dec 26 '10 at 21:00