I'm using beamer to create my slides and wanted to use beamerarticle to create written paper which is not just printed slides 3 on 1 page.
The option ignorenonframetext for the beamer class forces it to ignore any text but \section{} etc. that is not inside a frame environment. This is intended for interaction with the beamerarticle class to edit all information (frames and additional text) at the same place.
Unfortunately the \input{} command is ignored as well, making it impossible to organize my document in the usual way, i.e. one file for any section for example.
Is there any additional option to activate this kind of "infrastructure" command in beamer?
Example
\documentclass[ignorenonframetext]{beamer}
%\documentclass{scrartcl} \usepackage{beamerarticle}
\usetheme{Goettingen}
\usecolortheme{crane}
\title{Test slides}
\author{Christoph Juengling}
\begin{document}
\maketitle
\begin{frame}
\titlepage
\end{frame}
\input{sec-one}
This is explaning text at the end of the first section.
\input{sec-two}
\end{document}
In this example, using the beamerarticle class all looks fine, but with the beamer class activated with the specified option, nothing but the title frame will be created. The two additional files do contain valid LaTeX code with frames!
\inputis fine, but ensuring that the correct mode continues after input is much more awkward. I'm a bit busy this weekend, but I will make an effort to sort this over the next few days. – Joseph Wright♦ Sep 24 '11 at 12:05inputcommands. One for inputframeand one for inputtext. – Marco Daniel Sep 24 '11 at 12:58\inputshould always include the referenced file as though it was 'typed in here'. – Joseph Wright♦ Sep 24 '11 at 13:06