Max number of nested \input in LaTeX/Beamer
Posted
by P. Henaff
on Stack Overflow
See other posts from Stack Overflow
or by P. Henaff
Published on 2010-02-16T23:59:14Z
Indexed on
2010/05/19
19:50 UTC
Read the original article
Hit count: 214
When using the beamer documentclass, it looks like the third level of nested input is ignored:
\documentclass{beamer}
\input{body}
body.tex:
\begin{document}
\input{file1}
\input{file2}
\end{document}
file2.tex:
\input{file21}
The content of file21.tex is ignored with documentclass beamer, but correctly inserted if I use a documentclass article, for example.
Has anyone seen something like this?
© Stack Overflow or respective owner