I have a pretty long presentation: a course comprising a couple of hundreds frames. Occasionally, I go over the presentation, notice a few corrections in distinct frames.
Fixing these requires a number of iterations to find the most pleasing placement of objects, texts, and figures. Needless to say, running LaTeX on the entire presentation is time consuming.
Instead, I mark the slides with label=current and use includeonlyframes{current} which renders only the current slides. However, I get the annoying
LaTeX Warning: There were multiply-defined labels.
Is there a more civilized way of managing the workflow. It seems too cumbersome to mark each slide with a different label, and then enumerate the labels in the includeonlyframes command.
commentpackage to comment out parts I do not want to compile. See also http://tex.stackexchange.com/questions/17816/commenting-out-large-sections/62096#62096 – Daniel Jan 01 '14 at 20:30standalonebundle- a demonstration forbeameris given in http://tex.stackexchange.com/questions/73829/inserting-document-compiled-from-latex-code-inside-a-tex-file for example – cmhughes Jan 02 '14 at 02:59%\input{frame1},%\input{frame2}, ... and uncomment only those you are workin on. This way you have many files but you (a) can concentrate on the working frame (b) cannot damage the code of another frame accidentally (c) can reuse easily the frame in another presentations and (d) exclude-include according to the available time for your disssertation or the type of audience. – Fran May 15 '14 at 19:39\end{document}after the 4th frame (equally obvious, this is of little help when you are working in the 195th frame). – Fran Sep 30 '14 at 21:55\inputto share the same preamble on both files. So my minimum framework for long beamer presentation is themain.tex,temp.texandpreamble.tex. – Smarzaro Nov 19 '14 at 10:53