I was just wondering if it is possible to use a different font size for the text labels in the graphics than in the rest of the document?
In example; I have made several plots from my work in Gnuplot, exporting the figures as epslatex (meaning that i get the drawing itself in an *.eps file, while all the text labels are saved in an separate *.tex file, placed on the correct places in the figure).
However, I would like to include these figures and use a fontsize of 10pt instead of 12pt, which I use in the rest of my thesis. I know this can be done the hard way; compiling dvi of each figure with text size 10pt, converting the dvi to ps/eps/pdf with the text included, and then include it again in the thesis. As mentioend this is a lot of work, so hopefully it is possible to include the original eps files directly in my thesis, but tell the LaTeX compiler that the figures should be included with a different font size.
Example
Code: Select all
*preamble
font size = 12pt
*document begins
blablabla
want to include figure, but with font size of 10 instead of 12 as in the rest of the document
blablabla
*document ends
Code: Select all
\begin{figure}
\centering
\input{figurename.tex}
\caption{blabla.}
\label{blabla}
\end{figure}