I use the beamer class to create slideshows for my class. I make a copy for my students with:
\documentclass[handout]{beamer}
\pgfpagesuselayout{4 on 1}[a4paper,border shrink=5mm, landscape]
in the head so the students have four slides on each page.
The header I use for my presentation contains:
\documentclass[envcountsect]{beamer}
What I have to do is run it once with their header, post it online. Then run the program (Winedt) again and give myself a version. What I was wondering was if there is a way to create a header that will save two the two different documents with different name with only one run of the program.
Hopefully I have explained what I am looking for clearly. If you need me to explain better, I can attempt to. Thanks in advance for any help.
Lance
General ⇒ creating two different versions with one beamer document
NEW: TikZ book now 40% off at Amazon.com for a short time.
Re: creating two different versions with one beamer document
I have solved the same problem by use of the \input command.
Make three tex-files, one containing the bulk of your text, say 'slideshows.tex'. Then make a file 'handoutversion.tex' containing
\documentclass[handout]{beamer}
\pgfpagesuselayout{4 on 1}[a4paper,border shrink=5mm, landscape]
\input{slideshows}
And a file called screenversion.tex containing
\documentclass[envcountsect]{beamer}
\input{slideshows}
Then you compile either one of the files, but you only edit slideshows.tex.
Hope it was understandable
Make three tex-files, one containing the bulk of your text, say 'slideshows.tex'. Then make a file 'handoutversion.tex' containing
\documentclass[handout]{beamer}
\pgfpagesuselayout{4 on 1}[a4paper,border shrink=5mm, landscape]
\input{slideshows}
And a file called screenversion.tex containing
\documentclass[envcountsect]{beamer}
\input{slideshows}
Then you compile either one of the files, but you only edit slideshows.tex.
Hope it was understandable