On Fri, Mar 15, 2002 at 12:51:51AM -0800, Rudolph van der Merwe wrote:
> Well, I also thought that might work, but it doesn't. When I put the following
> in the preamble:
>
> \renewcommand{\includegraphics}{\includegraphics*}
>
> I get the following Latex compilation error:
>
> > ! TeX capacity exceeded, sorry [input stack size=1500].
> > \includegraphics ->\includegraphics
This doesn't work as you define an endless recursive macro.
Use
\let\oldincludegraphics=\includegraphics
\def\includegraphics{\oldincludegraphics*}