General ⇒ creating two different versions with one beamer document
creating two different versions with one beamer document
\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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: creating two different versions with one beamer document
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