Donn Ingle schrieb:
Just on the verge of seeing my work almost done and I get this error message. No google, no lyx wiki help either. It says "Tex capacity exceeded [input stack size = 1500]".
This is caused when you defined commands recursively. For example like
\renewcommand{\footnote}{\bf\footnote}
The correct call would be
\let\Myfoot\footnote
\renewcommand{\footnote}{\bf\Myfoot}
So check your ERT and preamble stuff to get this fixed.
regarsd Uwe
