Date: Mon, 11 Dec 2000 17:22:05 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp AT delorie DOT com Subject: Re: TEX again In-Reply-To: <3a34ea46$0$14470@SSP1NO25.highway.telekom.at> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 11 Dec 2000, Florian X wrote: > ! TeX capacity exceeded, sorry [text input levels=15]. > l.1 \input feldbus > @c -*-texinfo-*- ??? Why did you put "\input feldbus" on the first line of feldbus.tex? This causes recursive inclusion of the file in itself, as shown by these lines: > (feldbus.tex (feldbus.tex (feldbus.tex (feldbus.tex (feldbus.tex > (feldbus.tex > (feldbus.tex (feldbus.tex (feldbus.tex (feldbus.tex (feldbus.tex > (feldbus.tex > (feldbus.tex (feldbus.tex Each parenthesis means TeX opens another file to include it in the current file. It's quite obvious that, sooner or later, TeX will abort when it exceeds the maximum inclusion depth (15, in this case). What exactly did you try to achive with that line?