I use MikTex 2.9 and am compiling a beamer presentation. I have 100+ pages. The file compiles if I comment out about half of the frames. I managed one presentation by compiling the two halves one after the other and combining the two pdfs later. This, however, is a big headache to manage outlines and reference.
The exact message is:
Tex capacity exceeded. sorry. [input stack size = 5000].
Increasing the stack size to 50000 is to no avail. Can that be due to large number of frames, or since the outline frame cannot hold all the topics. I simply could not have any clue. Any ideas??
\renewcommand{\foo}{something \foo}trying to redefine a command in terms of itself. – egreg Apr 13 '12 at 10:06\fooafter your redefinition will overflow the main memory. To overflow the input stack it must be the other way round:\renewcommand{\foo}{\foo something}– Ulrike Fischer Apr 13 '12 at 10:24