<< | Page list | >>
Tips for using the Beamer presentation class.
Enumerations
- To customize the labels for an enumeration list, put the cursor at the start of the first item in the list and click
Insert > Short Title. This will create an inset labeled 'opt' for optional arguments. Insert the label you want for the first item there. Beamer will automatically replace any occurrence of 1, i or I with the index of each item in Arabic, lower or upper case Roman numerals respectively. Be sure to include any punctuation you want. For example, XY1: would produce item labels 'XY1:', 'XY2:' etc.
- If you want a label that contains the letter i or I (or a numeral that stays fixed), you need to enclose that part of the label in braces. For instance, '{Hint} I:' will generate labels 'Hint I:', 'Hint II:' etc. but 'Hint I:' will generate labels 'HInt I:', 'HIInt II:' etc. The braces cannot be entered directly; use the TEX button,
Insert > TeX Code or Ctrl-L to add TeX insets to the optional argument inset, then type the braces in them.
Repeating the Title Slide
To repeat the title slide at the end of the presentation (or anywhere in between):
- add
\renewcommand\makebeamertitle{\frame[label=mytitle]{\maketitle}} to the document preamble;
- at the point where you want the title slide to repeat, create a new frame using the AgainFrame environment and type in
mytitle as the label.
Versions for Note-taking
The handout class option tells Beamer to create a version of the presentation with each frame on a single page. To create a handout with space on each page for the audience to take notes, you can use the handoutWithNotes package, available from http://www.guidodiepen.nl/2009/07/creating-latex-beamer-handouts-with-notes/ (with instructions there) (and apparently not available from CTAN). Install the style file into your local texmf tree (somewhere under tex/latex) and update the LaTeX file database (typically by running texhash, but somewhat distribution-specific). Then add the following two lines to your document preamble:
\usepackage{handoutWithNotes}
\pgfpagesuselayout{1 on 1 with notes}[letterpaper,border shrink=5mm]
You can do various customizations in the second line (a4paper rather than letterpaper to change the paper size, 2 on 1 rather than 1 on 1 to reduce the number of pages, landscape (inside the optional argument) to switch from portrait to landscape mode, and so on. You still need to specify handout in the class options field to print one entry per frame, rather than one per overlay.
Categories
Tips Beamer