I am trying to use \renewcommand to change the size of footnotes throughout the main text. I do this by changing \footenotesize to a different command, \scriptsize. Later on, I would like the command \footnotesize to return to its original use. But, using \renewcommand again to do this causes my .tex file to stop compiling, typically on the first \includegraphics command. Even without the \includegraphics command, the .tex file will not compile. I don't understand what's going on, but if I remove the second \renewcommand, the document compiles.
\documentclass{article}
\usepackage{graphicx} % Graphics package to include figures (need graphicx.sty)
\begin{document}
\renewcommand{\footnotesize}{\scriptsize}
Here is some text. And Here is some text with a footnote.\footnote{Here is the footnote text.}
\renewcommand{\footnotesize}{\footnotesize}
\begin{figure}
\caption{Probability of Leaving within One Year: 1999-2002}
\begin{center}
\includegraphics[width=4in]{combined-one-3060-vertical.eps}
\end{center}
\label{fig:leave1-baseline}
{\footnotesize
Notes: The top panel plots the average leave probability for one-year age bins for the 2002 sample, while the bottom panel separately plots these probabilities for the 2002 and 1999-2001 samples.
}
\end{figure}
\end{document}

\footnote's text, other document elements contained within your redefinition might use\footnotesizethat you're not aware of. Certainly your example is very small and my discussion provides a general approach to this. – Werner Sep 05 '13 at 05:51\footnotesizeis one of a graded series of sizes that can be (and is) used for all kinds of purposes other than footnotes. Better to simply redefine\footnotetextto use\scriptsizerather than\footnotesize– David Carlisle Sep 05 '13 at 08:29