SlideShare a Scribd company logo
1 of 219
Download to read offline
Beamer v3.0 Guide




                    Beamer v3.0 Guide

                          Ki-Joo Kim



                       October 26, 2004
Beamer v3.0 Guide
   Why Beamer?




Why Beamer?
        Pros:
            Both dvips/ps2pdf1 and pdflatex supports
            Rich overlay and transition effects
            Navigational bars and buttons
            Outputs: screen, transparency, handouts, and notes
            Emulation of other PDF presentation tools such as Prosper and FoilTEX
        Cons:
            Difficult to design a template




            1 You need this route if you use PSTricks.
Beamer v3.0 Guide
   Beamer Structure
      Basic Code



Basic Code I
                   Beamer class loading with themes
             documentclass[slidestop,compress,mathserif]{beamer}
             %usepackage[bars]{beamerthemetree} % Beamer Theme v 2.2
             usetheme{Antibes}                  % Beamer theme
             usecolortheme{lily}                % Beamer color theme
Beamer v3.0 Guide
   Beamer Structure
      Basic Code



Basic Code I
                   Beamer class loading with themes
             documentclass[slidestop,compress,mathserif]{beamer}
             %usepackage[bars]{beamerthemetree} % Beamer Theme v 2.2
             usetheme{Antibes}                  % Beamer theme
             usecolortheme{lily}                % Beamer color theme


                   Cover title
             title{}
             author{}
             institute{}
             begin{document}
             begin{frame}                       % Cover slide
              titlepage
             end{frame}
             % Instead, you can use frame{titlepage}} (Beamer v 2.2 macro)
Beamer v3.0 Guide
   Beamer Structure
      Basic Code



Basic Code II
                   Main slide frame
             section{Introduction}    % Bookmark information
             subsection{History}      % Bookmark information
             begin{frame}[options]
              frametitle{History}
              ... slide contents ...
             end{frame}
Beamer v3.0 Guide
   Beamer Structure
      Five Themes



Five Themes
                The main difference between v 3.0 and v 2.2 is Beamer themes.
                Five theme categories:
                      Presentation Themes – Slide template
                      Color Themes – Color scheme for slide template
                      Font Themes
                      Inner Themes
                      Outer Themes
                Example
             documentclass[slidestop,compress,mathserif]{beamer}
             %usepackage[bars]{beamerthemetree} % Beamer Theme v 2.2
             usetheme{Antibes}                  % Beamer theme
             usecolortheme{lily}                % Beamer color theme


                Go to    Themes   for more information.
Beamer v3.0 Guide
   Beamer Structure
      Layout Options



Layout Options
                [slidestop] puts frame titles on the top left corner
                (default=[slidescentered]).
                [compress] makes all navigation bars as small as possible
                (default=[uncompressed]).
                [red] changes navigation bars and titles to reddish color.
                    blue: Default color scheme
                    red: Used in this presentation
                       brown
                       blackandwhite: Good for transparencies
Beamer v3.0 Guide
   Beamer Structure
      Output Options



Output Options
                Default: PDF screen (size 128mm × 96 mm)2 .
                [handout] for PDF handouts.
                [trans] for PDF transparency.
          ⇒ For handout and trans, you need some extra work to enlarge the size. Click
              here to see an example!


                [notes=hide/show/only] for notes. Hide notes (default), add
                notes to the PDF screen, or notes only PDF.




            2 Monitor’s 4:3 aspect ratio.
Beamer v3.0 Guide
   Beamer Structure
      Additional Beamer Options



Additional Beamer Options
                [hyperref={bookmarks=false}] removes bookmarks.
                [cjk] for CJK typesetting. ⇒ For hangul, use   hfont   package.
                usepackage[utf8]{inputenc} for Unicode.
Frame Options
     ‘frame[plain]frametitle...’ for plane frame style as used in
     this slide!
     [containsverbatim] for using verbatim environment and verb
     command.
     [allowframebreaks] for automatic split of frames if the contents
     do not fit in a single slide.
     [shrink] for shrinking the contents to fit in a single slide.
     [squeeze] for squeezing vertical space.
Beamer v3.0 Guide
   Beamer Structure
      Transparency Effects



Transparency Effects
                All overlayed stuffs are covered (default)
                beamertemplatetransparentcoveredhigh makes all covered text
                highly transparent
                beamertemplatetransparentcovereddynamicmedium makes all
                covered text quite transparent, but is a dynamic way. The range of
                dynamics is smaller.
Beamer v3.0 Guide
   Fonts
      Text and Math Fonts



Text and Math Fonts I
                Excellent support for selecting text and math fonts.
                Default text and math fonts: CMSS
                Beamer option [sans] for text font
                        mathsans is default.
                        Equivalent to usefonttheme{default}
                Beamer option [sefif] for text font
                        mathserif is default.
                        Equivalent to usefonttheme[options]{serif}
                Beamer option [mathsans/mathserif] for math font
Beamer v3.0 Guide
   Fonts
      Text and Math Fonts



Text and Math Fonts II
                Beamer option [professionalfonts] to turn off Beamer’s internal
                font rewriting (⇒ Equivalent to usefonttheme{professionalfonts})
                Additional font theme macros
                        usefonttheme{structurebold} for bold faced structures (titles,
                        headlines, footlines, sidebars, ...)
                        usefonttheme{structureitalicserif}
                        usefonttheme{structuresmallcapsserif}
                Font settings in this document:
               documentclass[mathserif]{beamer}           %
               usepackage{lucidaso}                       % Lucida Bright (SO Version)
               usepackage[small]{eulervm}                 % Euler VM
Beamer v3.0 Guide
   Fonts
      Font Size



Font Size
                  Default font size: 11pt (At the full screen mode this font size corresponds
                  to 22 pt.)
                  Available font size options: 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt
Beamer v3.0 Guide
   Colors
      Color Definition



Color Definition
                Beamer loads xcolor package by Uwe Kern, which also supports color
                and pstcol.
                ‘xcolor’ definition
                        xdefinecolor{lavendar}{rgb}{0.8,0.6,1}
                        xdefinecolor{olive}{cmyk}{0.64,0,0.95,0.4}
                        colorlet{structure}{green!60!black} for color substitution
                        Predefined colors: red, green, blue, cyan, magenta, yellow, black,
                        darkgray, gray, lightgray, orange, violet, purple, and brown
                If you want to use the options of ‘color’ package, pass
                [color=option] option to Beamer.
                If you want to use ‘pstcol’, pass [xcolor=pst,dvips] option to
                Beamer. Now you should use ‘dvips/ps2pdf’
Beamer v3.0 Guide
   Colors
      More colors in xcolor package



More colors in ‘xcolor’ package
                Color mixing is very easy!
                    color             example   meaning
                    green!80!gray       text    80% green + 20% gray
                    green!60!gray       text    60% green + 40% gray
                    green!40!gray       text    40% green + 60% gray
                    -green              text    remove green from above
                You can use animate (in Beamer) or multido (with PSTricks) for
                fade-in and fade-out!
Beamer v3.0 Guide
   Colors
      Highlighting Colors



Highlighting Colors
                Beamer also has theme-specific highlighting colors:
                            alert{text} ⇒ text
                            structure{text} ⇒ text
                To change these colors:
                            usealerttemplate{color{red}}{} to change red.
                            usestructuretemplate{color{blue}}{} to change blue.
Beamer v3.0 Guide
   Colors
      Background Colors



Background Colors
                To set solid background color,
                beamersetaveragebackground{color} or
                beamertemplatesolidbackgroundcolor{color}
                To set gradient background color,
                beamertemplateshadingbackground{color1}{color2}. ⇒ The
                colors in this slide is {blue!5}{yellow!10}.
                To set grid background,
                beamertemplategridbackground[grid_space].
Beamer v3.0 Guide
   Colors
      Color Example



Color Example
                Color changes in
                      Navigational bars
                      Background
                      structure{..} color
Beamer v3.0 Guide
   Colors
      Color Example



Color Example
                Color changes in
                      Navigational bars
                      Background
                      structure{..} color
                Code:
                colorlet{mystruct}{structure}                  % Save current structure
                colorlet{structure}{magenta}                           % New structure
                usestructuretemplate{color{structure}}{}              % structure{..}
                beamertemplateshadingbackground{yellow!50}{magenta!50} % New background
                frame{%
                 ...
                }%
                % Back to the original "structure" and bg color schemes
                colorlet{structure}{mystruct}
                beamertemplateshadingbackground{blue!10}{yellow!10}
Beamer v3.0 Guide
   Verbatim
      Verbatim w/o Overlays



Verbatim w/o Overlays
                ‘verb’ or ‘verbatim’ cannot be directly used in Beamer!
                If there is no overlay, use frame[containsverbatim]
              frame[containsverbatim]{frametitle{..}%
                begin{verbatim}
                 .. verbatim contents ..
                end{verbatim}
              }%


                Now in-line verbatim is possible with ‘verb’.
                Color and size can be easily changed.
Beamer v3.0 Guide
   Verbatim
      Inline Verbatim with Overlyas



Inline Verbatim with Overlays
                My solution: path{..} instead of verb.
                         Color: Hello, Hello
                         Size: Hello, Hello, Hello
Beamer v3.0 Guide
   Verbatim
      Inline Verbatim with Overlyas



Inline Verbatim with Overlays
                My solution: path{..} instead of verb.
                         Color: Hello, Hello
                         Size: Hello, Hello, Hello
                Beamer solution: defverbcommand|contents| outside the
                frame.
                         Define defverbmyverb|Hello,World!|
                         Then use myverb ⇒ Hello, World!
Beamer v3.0 Guide
   Verbatim
      Verbatim with Overlays



Verbatim with Overlays
                Use lstlisting environment instead of verbatim environment.
                Define defverbatim[colored]command{contents} outside
                frame.
                ‘contents’ are the listing environment.
Beamer v3.0 Guide
   Verbatim
      Verbatim with Overlays



Verbatim with Overlays
                Use lstlisting environment instead of verbatim environment.
                Define defverbatim[colored]command{contents} outside
                frame.
                ‘contents’ are the listing environment.
                Example:
                    defverbatim[colored]testcode{%
                       begin{lstlisting}[frame=single,emph={ga},emphstyle=color{olive}]
                          ....
                       end{lstlisting}}%
                    frame{%
                       testcode
                    }%
Beamer v3.0 Guide
   Figures
      Figures Intro



Figures Intro
                 Standard LTEX figure environment
                           A

                 can be used.
                 Beamer also loads pgf package. So
                 PGF command,
                 pgfimage[]{file}, is also
                 possible.
                 includegraphics, pgfimage,
                 and pdfuseimage understand
                 overlays.



                                                     Figure: Tiger
Beamer v3.0 Guide
   Figures
      PGF Macros



PGF Macros
                PSTricks and PGF can be used for locating figures exactly .
                Grid size of slide: (LL × UR) = (0cm,-7cm) × (11cm,1cm)
                PGF macro for locating figures:
               pgfputat{pgfxy(0,-6.5)}{pgfbox[left,base]{pgfimage[width=1cm]{tiger}}}


                If you use the same figure several times, use pgfdecalreimage
                and pgfuseimage. Or just use includegraphics.
Beamer v3.0 Guide
   Figures
      Figures inside Columns



Figures inside Columns
                Figures inside ‘columns’ environment need exact position.
Beamer v3.0 Guide
   Figures
      Figures inside Columns



Figures inside Columns
                Figures inside ‘columns’ environment need exact position.
                PGF macros (PDF, PNG, and JPEG with pdflatex)
              begin{columns}
              begin{column}{0.65textwidth}
                AB
              end{column}
              begin{column}{0.35textwidth}
                pgfputat{pgfxy(0,0)}{pgfbox[left,top]{includegraphics[width=textwidth]{tig
              end{column}
             end{columns}
Beamer v3.0 Guide
   Figures
      Figures inside Columns



Figures inside Columns
                Figures inside ‘columns’ environment need exact position.
                PGF macros (PDF, PNG, and JPEG with pdflatex)
              begin{columns}
              begin{column}{0.65textwidth}
                AB
              end{column}
              begin{column}{0.35textwidth}
                pgfputat{pgfxy(0,0)}{pgfbox[left,top]{includegraphics[width=textwidth]{tig
              end{column}
             end{columns}


                PSTricks macros (EPS with dvips)
             begin{columns}
              begin{column}{0.65textwidth}
               AB
              end{column}
              begin{column}{0.35textwidth}
               rput[lt](0,0){includegraphics[clip=true,width=textwidth]{tiger}}
              end{column}
             end{columns}
Beamer v3.0 Guide
   Figures
      Zooming Figures



Zooming Figures
                Figures can be zoomed3 using
                framezoom<button overlay><zoomed overlay>(x,y)(w,h).

                (x,y): Upper left coordinate point
                (w,h): Width and height for zooming
                Example:
                    frame{frametitle{Zooming Figures -- Example}
                     framezoom<1><2>[border](0.5cm,0.5cm)(2cm,1.5cm)
                     framezoom<1><3>[border](1cm,3cm)(2cm,1.5cm)
                     framezoom<1><4>[border](3cm,2cm)(2cm,2cm)

                     pgfimage[height=6cm]{tiger}
                     %includegraphics[height=6cm]{tiger} is working, too!
                    }%




             3 New in Version 2.20
Beamer v3.0 Guide
   Figures
      Zooming Figures – Example



Zooming Figures – Example




        Click the border to zoom-in.
Beamer v3.0 Guide
   Figures
      Zooming Figures – Example



Zooming Figures – Example
Beamer v3.0 Guide
   Figures
      Zooming Figures – Example



Zooming Figures – Example
Beamer v3.0 Guide
   Figures
      Zooming Figures – Example



Zooming Figures – Example
Beamer v3.0 Guide
   Figures
      Drawing Figures



Drawing Figures
                The most powerful and easiest-to-use package, PSTricks, does not
                work with pdflatex due to fundamental differences in PS and PDF.




             4 Note that Beamer does not support dvipdfm.
Beamer v3.0 Guide
   Figures
      Drawing Figures



Drawing Figures
                The most powerful and easiest-to-use package, PSTricks, does not
                work with pdflatex due to fundamental differences in PS and PDF.
                PGF (portable graphics format) by the Beamer author.
                        Less powerful than PSTricks, but works fine.
                        Supports dvips, dvipdfm4 , and pdflatex.




             4 Note that Beamer does not support dvipdfm.
Beamer v3.0 Guide
   Figures
      Drawing Figures



Drawing Figures
                The most powerful and easiest-to-use package, PSTricks, does not
                work with pdflatex due to fundamental differences in PS and PDF.
                PGF (portable graphics format) by the Beamer author.
                        Less powerful than PSTricks, but works fine.
                        Supports dvips, dvipdfm4 , and pdflatex.
                MetaPost
                        Works with dvips/ps2pdf, dvipdfm, and pdflatex




             4 Note that Beamer does not support dvipdfm.
Beamer v3.0 Guide
   Figures
      Drawing Figures



Drawing Figures
                The most powerful and easiest-to-use package, PSTricks, does not
                work with pdflatex due to fundamental differences in PS and PDF.
                PGF (portable graphics format) by the Beamer author.
                        Less powerful than PSTricks, but works fine.
                        Supports dvips, dvipdfm4 , and pdflatex.
                MetaPost
                        Works with dvips/ps2pdf, dvipdfm, and pdflatex
                I prefer Beamer + PSTricks.
                ⇒ See beamer pstricks.pdf [1]




             4 Note that Beamer does not support dvipdfm.
Beamer v3.0 Guide
   Figures
      Masking Figures



Masking Figures
                Want to mask white background of your images?



                              +       =




             5 I do not know the exact requirement.
Beamer v3.0 Guide
   Figures
      Masking Figures



Masking Figures
                Want to mask white background of your images?



                          +               =
                Make a mask image in 256 Colors and JPEG Compression5




             5 I do not know the exact requirement.
Beamer v3.0 Guide
   Figures
      Masking Figures



Masking Figures
                Want to mask white background of your images?



                          +               =
                Make a mask image in 256 Colors and JPEG Compression5
                Use pgfdeclaremask in pdf package. But only works with pdflatex!




             5 I do not know the exact requirement.
Beamer v3.0 Guide
   Figures
      Masking Figures



Masking Figures
                Want to mask white background of your images?



                           +              =
                Make a mask image in 256 Colors and JPEG Compression5
                Use pgfdeclaremask in pdf package. But only works with pdflatex!
                Source code:
               pgfdeclaremask{mymask}{ppt.mask}        % Mask image: ppt.mask.jpg
               pgfimage[mask=mymask,interpolate=true]{ppt}      % Masking ppt.png




             5 I do not know the exact requirement.
Beamer v3.0 Guide
   Local Structures
      Fancy Bullets



Fancy Bullets
            1    beamertemplateballitem in the preamble
            2    itemize environment ⇒ Fancy ball
            3    enumerate environment ⇒ Fancy numbered ball (used here).
Beamer v3.0 Guide
   Local Structures
      Fancy Bullets



Fancy Bullets
            1    beamertemplateballitem in the preamble
            2    itemize environment ⇒ Fancy ball
            3    enumerate environment ⇒ Fancy numbered ball (used here).
        To use different enumerate templates,
                begin{enumerate}[minitemplate]
                  item ...
                end{enumerate}


        where mini template can be ‘A’, ‘a’, ‘i’, ‘I’, ‘(A)’, . . . . But the indentation may be
        changed (bug?)
           i Item 1
          ii Item 2
Beamer v3.0 Guide
   Local Structures
      Framed Text



Framed Text
                 Example Code:
              begin{beamerboxesrounded}[scheme=alert,shadow=true]{Theorem}
                $A = B$.
              end{beamerboxesrounded}}


                 Result:
                      Theorem
                      A = B.
Beamer v3.0 Guide
   Local Structures
      Columns



Columns

                 Use LTEX minipage
                     A

                 environment or
                 Use Beamer columns
                 environment
              begin{columns}
               begin{column}[pos]{width}
                 ... contents ...
               end{column}
               begin{column}[pos]{width}
                ... contents ...
               end{column}
              end{columns}
Beamer v3.0 Guide
   Local Structures
      Tables



Tables
               Standard LTEX table environment
                          A
                                                  Table Overlays:
               can be used.
               onslide inside ‘overprint’
               environment for showing overlays
               in the right example.
Beamer v3.0 Guide
   Local Structures
      Tables



Tables
               Standard LTEX table environment
                          A
                                                  Table Overlays:
               can be used.                        Cells are growing
               onslide inside ‘overprint’
               environment for showing overlays
               in the right example.
Beamer v3.0 Guide
   Local Structures
      Tables



Tables
               Standard LTEX table environment
                          A
                                                  Table Overlays:
               can be used.                        Cells are growing
               onslide inside ‘overprint’          step by
               environment for showing overlays
               in the right example.
Beamer v3.0 Guide
   Local Structures
      Tables



Tables
               Standard LTEX table environment
                          A
                                                  Table Overlays:
               can be used.                        Cells are growing
               onslide inside ‘overprint’          step by
               environment for showing overlays    step.
               in the right example.
Beamer v3.0 Guide
   Local Structures
      Tables



Tables
               Standard LTEX table environment
                          A
                                                  Table Overlays:
               can be used.                        Cells are growing
               onslide inside ‘overprint’          step by
               environment for showing overlays    step.          Finished!
               in the right example.
Beamer v3.0 Guide
   Transitions




Transitions
                 PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace,
                 Split, Wipe.
                 Transition commands are inside frame environment.
                 Beamer transition commands understand overlays. Without overlays
                 the transition is global to the current frame.
Beamer v3.0 Guide
   Transitions




Transitions
                 PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace,
                 Split, Wipe.
                 Transition commands are inside frame environment.
                 Beamer transition commands understand overlays. Without overlays
                 the transition is global to the current frame.
                 Overlayed transition examples:
                      Glitter at /Di 315 (default on this slide): transglitter[direction=315]
Beamer v3.0 Guide
   Transitions




Transitions
                 PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace,
                 Split, Wipe.
                 Transition commands are inside frame environment.
                 Beamer transition commands understand overlays. Without overlays
                 the transition is global to the current frame.
                 Overlayed transition examples:
                      Glitter at /Di 315 (default on this slide): transglitter[direction=315]
                      Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3>
Beamer v3.0 Guide
   Transitions




Transitions
                 PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace,
                 Split, Wipe.
                 Transition commands are inside frame environment.
                 Beamer transition commands understand overlays. Without overlays
                 the transition is global to the current frame.
                 Overlayed transition examples:
                      Glitter at /Di 315 (default on this slide): transglitter[direction=315]
                      Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3>
                      . . . . . . . . . . . . . . . . . . . . . . . Boxin: transboxin<4> . . . . . . . . . . . . . . . . . . . . . . .
Beamer v3.0 Guide
   Transitions




Transitions
                 PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace,
                 Split, Wipe.
                 Transition commands are inside frame environment.
                 Beamer transition commands understand overlays. Without overlays
                 the transition is global to the current frame.
                 Overlayed transition examples:
                      Glitter at /Di 315 (default on this slide): transglitter[direction=315]
                      Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3>
                      . . . . . . . . . . . . . . . . . . . . . . . Boxin: transboxin<4> . . . . . . . . . . . . . . . . . . . . . . .
                      Dissolve transition: transdissolve<5>
Beamer v3.0 Guide
   Transitions




Transitions
                 PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace,
                 Split, Wipe.
                 Transition commands are inside frame environment.
                 Beamer transition commands understand overlays. Without overlays
                 the transition is global to the current frame.
                 Overlayed transition examples:
                      Glitter at /Di 315 (default on this slide): transglitter[direction=315]
                      Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3>
                      . . . . . . . . . . . . . . . . . . . . . . . Boxin: transboxin<4> . . . . . . . . . . . . . . . . . . . . . . .
                      Dissolve transition: transdissolve<5>
                      Split vertical out: transsplitverticalout<6>
Beamer v3.0 Guide
   Overlays
      Overview



Overlays - Overview
                 Overlays is the heart of dynamic PDF presentation.
                 Beamer provides plenty of overlay commands.
Beamer v3.0 Guide
   Overlays
      Overview



Overlays - Overview
                 Overlays is the heart of dynamic PDF presentation.
                 Beamer provides plenty of overlay commands.
                 Key overlay functions are:
                     Stepwise viewing
                     Replace
                     Highlighting
Beamer v3.0 Guide
   Overlays
      Overview



Overlays - Overview
                 Overlays is the heart of dynamic PDF presentation.
                 Beamer provides plenty of overlay commands.
                 Key overlay functions are:
                      Stepwise viewing
                      Replace
                      Highlighting
                 Various overlay counters: ‘n’, ‘n-’, ‘-n’, ‘n1-n2’, ‘+-’.
Beamer v3.0 Guide
   Overlays
      Pause



Pause for Stepwise Viewing
        pause command6 for easy and simple overlays.

        begin{itemize}
        pause item Every thing
        pause item that has
        pause item beginning
        pause item has end.
        end{itemize}




              6 There is also unpause command.
Beamer v3.0 Guide
   Overlays
      Pause



Pause for Stepwise Viewing
        pause command6 for easy and simple overlays.

        begin{itemize}                           Every thing
        pause item Every thing
        pause item that has
        pause item beginning
        pause item has end.
        end{itemize}




              6 There is also unpause command.
Beamer v3.0 Guide
   Overlays
      Pause



Pause for Stepwise Viewing
        pause command6 for easy and simple overlays.

        begin{itemize}                           Every thing
        pause item Every thing
                                                  that has
        pause item that has
        pause item beginning
        pause item has end.
        end{itemize}




              6 There is also unpause command.
Beamer v3.0 Guide
   Overlays
      Pause



Pause for Stepwise Viewing
        pause command6 for easy and simple overlays.

        begin{itemize}                           Every thing
        pause item Every thing
                                                  that has
        pause item that has
        pause item beginning                    beginning
        pause item has end.
        end{itemize}




              6 There is also unpause command.
Beamer v3.0 Guide
   Overlays
      Pause



Pause for Stepwise Viewing
        pause command6 for easy and simple overlays.

        begin{itemize}                           Every thing
        pause item Every thing
                                                  that has
        pause item that has
        pause item beginning                    beginning
        pause item has end.                     has end.
        end{itemize}




              6 There is also unpause command.
Beamer v3.0 Guide
   Overlays
      Pause



Pause for Stepwise Viewing
        pause command6 for easy and simple overlays.

        begin{itemize}                            Every thing
        pause item Every thing
                                                   that has
        pause item that has
        pause item beginning                     beginning
        pause item has end.                      has end.
        end{itemize}

        Note that pause does not know overlay counters.




              6 There is also unpause command.
Beamer v3.0 Guide
   Overlays
      Pause: Table Example



Pause: Table Example
                Row increment in a table:
Beamer v3.0 Guide
   Overlays
      Pause: Table Example



Pause: Table Example
                Row increment in a table:
                    Class    A   B   C   D
                    X        1   2   3   4
Beamer v3.0 Guide
   Overlays
      Pause: Table Example



Pause: Table Example
                Row increment in a table:
                    Class    A   B   C   D
                    X        1   2   3   4
                    Y        3   4   5   6
Beamer v3.0 Guide
   Overlays
      Pause: Table Example



Pause: Table Example
                Row increment in a table:
                    Class    A   B   C   D
                    X        1   2   3   4
                    Y        3   4   5   6
                    Z        5   6   7   8
Beamer v3.0 Guide
   Overlays
      Pause: Table Example



Pause: Table Example
                Row increment in a table:
                    Class    A   B   C   D
                    X        1   2   3   4
                    Y        3   4   5   6
                    Z        5   6   7   8
                Source code:
               rowcolors[]{1}{blue!20}{blue!10}
               begin{tabular}{l!{vrule}cccc}
                Class & A & B & C & D hline
                X & 1 & 2 & 3 & 4 pause 
                Y & 3 & 4 & 5 & 6 pause 
                Z & 5 & 6 & 7 & 8
               end{tabular}
Beamer v3.0 Guide
   Overlays
      Onslide



Onslide for Stepwise Viewing
                onslide<n->stuff shows stuff on the given slides.
Beamer v3.0 Guide
   Overlays
      Onslide



Onslide for Stepwise Viewing
                onslide<n->stuff shows stuff on the given slides.
                Example: Column increment in a table:
                    Class   A
                    X       1
                    Y       3
                    Z       5
Beamer v3.0 Guide
   Overlays
      Onslide



Onslide for Stepwise Viewing
                onslide<n->stuff shows stuff on the given slides.
                Example: Column increment in a table:
                    Class   A   B
                    X       1   2
                    Y       3   4
                    Z       5   6
Beamer v3.0 Guide
   Overlays
      Onslide



Onslide for Stepwise Viewing
                onslide<n->stuff shows stuff on the given slides.
                Example: Column increment in a table:
                    Class   A   B   C
                    X       1   2   3
                    Y       3   4   5
                    Z       5   6   7
Beamer v3.0 Guide
   Overlays
      Onslide



Onslide for Stepwise Viewing
                onslide<n->stuff shows stuff on the given slides.
                Example: Column increment in a table:
                    Class   A   B   C   D
                    X       1   2   3   4
                    Y       3   4   5   6
                    Z       5   6   7   8
Beamer v3.0 Guide
   Overlays
      Onslide



Onslide for Stepwise Viewing
                onslide<n->stuff shows stuff on the given slides.
                Example: Column increment in a table:
                    Class   A   B   C   D
                    X       1   2   3   4
                    Y       3   4   5   6
                    Z       5   6   7   8
                Source code:
                rowcolors[]{1}{blue!20}{blue!10}
                begin{tabular}{l!{vrule}c<{onslide<2->}c<{onslide<3->} %
                                c<{onslide<4->}c<{onslide}c}
                  Class & A & B & C & D 
                  X & 1 & 2 & 3 & 4 
                  Y & 3 & 4 & 5 & 6 
                  Z & 5 & 6 & 7 & 8
                end{tabular}
Beamer v3.0 Guide
   Overlays
      Item I



Item I for Stepwise Viewing
        item<n-> for incremental overlays with overlay counters.

        begin{itemize}
        item<2-> Every thing
        item<3-> that has
        item<4-> beginning
        item<5-> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item I



Item I for Stepwise Viewing
        item<n-> for incremental overlays with overlay counters.

        begin{itemize}                            Everything
        item<2-> Every thing
        item<3-> that has
        item<4-> beginning
        item<5-> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item I



Item I for Stepwise Viewing
        item<n-> for incremental overlays with overlay counters.

        begin{itemize}                            Everything
        item<2-> Every thing
                                                   that has
        item<3-> that has
        item<4-> beginning
        item<5-> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item I



Item I for Stepwise Viewing
        item<n-> for incremental overlays with overlay counters.

        begin{itemize}                            Everything
        item<2-> Every thing
                                                   that has
        item<3-> that has
        item<4-> beginning                        beginning
        item<5-> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item I



Item I for Stepwise Viewing
        item<n-> for incremental overlays with overlay counters.

        begin{itemize}                            Everything
        item<2-> Every thing
                                                   that has
        item<3-> that has
        item<4-> beginning                        beginning
        item<5-> has end.                         has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item I



Item I for Stepwise Viewing
        item<n-> for incremental overlays with overlay counters.

        begin{itemize}                            Everything
        item<2-> Every thing
                                                   that has
        item<3-> that has
        item<4-> beginning                        beginning
        item<5-> has end.                         has end.
        end{itemize}

        What if more items are inserted?
Beamer v3.0 Guide
   Overlays
      Item II



Item II for Stepwise Viewing
        <+-> for incremental overlays w/o overlay counters.

        begin{itemize}[<+->]
        item Every thing
        item that has
        item beginning
        item has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item II



Item II for Stepwise Viewing
        <+-> for incremental overlays w/o overlay counters.

        begin{itemize}[<+->]                       Everything
        item Every thing
        item that has
        item beginning
        item has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item II



Item II for Stepwise Viewing
        <+-> for incremental overlays w/o overlay counters.

        begin{itemize}[<+->]                       Everything
        item Every thing
                                                    that has
        item that has
        item beginning
        item has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item II



Item II for Stepwise Viewing
        <+-> for incremental overlays w/o overlay counters.

        begin{itemize}[<+->]                       Everything
        item Every thing
                                                    that has
        item that has
        item beginning                             beginning
        item has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item II



Item II for Stepwise Viewing
        <+-> for incremental overlays w/o overlay counters.

        begin{itemize}[<+->]                       Everything
        item Every thing
                                                    that has
        item that has
        item beginning                             beginning
        item has end.                              has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item II



Item II for Stepwise Viewing
        <+-> for incremental overlays w/o overlay counters.

        begin{itemize}[<+->]                       Everything
        item Every thing
                                                    that has
        item that has
        item beginning                             beginning
        item has end.                              has end.
        end{itemize}

        Note that item<+-> can be used instead of global setting of
        begin{itemize}[<+->].
Beamer v3.0 Guide
   Overlays
      Item III



Item III for Stepwise Viewing
        item<n1-n2> for fine control of overlays.

        begin{itemize}
        item<1-> Every thing
        item<3-4> that has
        item<4> beginning
        item<2-5> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item III



Item III for Stepwise Viewing
        item<n1-n2> for fine control of overlays.

        begin{itemize}                             Everything
        item<1-> Every thing
        item<3-4> that has
        item<4> beginning
        item<2-5> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item III



Item III for Stepwise Viewing
        item<n1-n2> for fine control of overlays.

        begin{itemize}                             Everything
        item<1-> Every thing
        item<3-4> that has
        item<4> beginning
        item<2-5> has end.                         has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item III



Item III for Stepwise Viewing
        item<n1-n2> for fine control of overlays.

        begin{itemize}                             Everything
        item<1-> Every thing
                                                    that has
        item<3-4> that has
        item<4> beginning
        item<2-5> has end.                         has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item III



Item III for Stepwise Viewing
        item<n1-n2> for fine control of overlays.

        begin{itemize}                             Everything
        item<1-> Every thing
                                                    that has
        item<3-4> that has
        item<4> beginning                          beginning
        item<2-5> has end.                         has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Item III



Item III for Stepwise Viewing
        item<n1-n2> for fine control of overlays.

        begin{itemize}                             Everything
        item<1-> Every thing
        item<3-4> that has
        item<4> beginning
        item<2-5> has end.                         has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ GA




                                                 Slide 1




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ MOGA




                                                 Slide 2




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA




                                                 Slide 3




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒




                                                 Slide 4




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒ I am 5




                                                 Slide 5




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒




                                                 Slide 6




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8




                                                 Slide 7




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒




                                                 Slide 8




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8




                                                 Slide 9




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8
                alt<n> {at n}{not at n} for two alternatives.
                (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11




                                                 Slide 10




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8
                alt<n> {at n}{not at n} for two alternatives.
                (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am 11




                                                 Slide 11




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8
                alt<n> {at n}{not at n} for two alternatives.
                (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11




                                                 Slide 12




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8
                alt<n> {at n}{not at n} for two alternatives.
                (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11
                temporal<n> {before}{at n}{after} for three alternatives.7
                (Ex) temporal<14> {I am 13}{I am 14}{I am 15} ⇒ I am 13


                                                 Slide 13




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8
                alt<n> {at n}{not at n} for two alternatives.
                (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11
                temporal<n> {before}{at n}{after} for three alternatives.7
                (Ex) temporal<14> {I am 13}{I am 14}{I am 15} ⇒ I am 14


                                                 Slide 14




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      Replace



Replace
                Successive only<n>{..}.
                (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA
                uncover<n>{..} shows at given n.
                (Ex) uncover<5> {I am 5} ⇒
                invisible<n>{..} hides at given n.
                (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8
                alt<n> {at n}{not at n} for two alternatives.
                (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11
                temporal<n> {before}{at n}{after} for three alternatives.7
                (Ex) temporal<14> {I am 13}{I am 14}{I am 15} ⇒ I am 15


                                                 Slide 15




              7 See also highlighting section.
Beamer v3.0 Guide
   Overlays
      More Replace



More Replaces
        In case of subtle differences in the heights of replacements, overlayarea
        and overprint environments can be used.
Beamer v3.0 Guide
   Overlays
      More Replace



More Replaces
        In case of subtle differences in the heights of replacements, overlayarea
        and overprint environments can be used.
                only<n> in overlayarea environment:
                The development of pMSGA is based on
                NSGA-II and PGAPack.
Beamer v3.0 Guide
   Overlays
      More Replace



More Replaces
        In case of subtle differences in the heights of replacements, overlayarea
        and overprint environments can be used.
                only<n> in overlayarea environment:
                The main difference is sharing again and new density function.
Beamer v3.0 Guide
   Overlays
      More Replace



More Replaces
        In case of subtle differences in the heights of replacements, overlayarea
        and overprint environments can be used.
                only<n> in overlayarea environment:
                The main difference is sharing again and new density function.


                onslide<n> in overprint environment:
                This is a first line.
                This is a second, long line.
Beamer v3.0 Guide
   Overlays
      More Replace



More Replaces
        In case of subtle differences in the heights of replacements, overlayarea
        and overprint environments can be used.
                only<n> in overlayarea environment:
                The main difference is sharing again and new density function.


                onslide<n> in overprint environment:
                The previous two lines are replaced by this one.
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}
        item <+-| alert@+> Every thing
        item <+-| alert@+> that has
        item <+-| alert@+> beginning
        item <+-| alert@+> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                   Everything
        item <+-| alert@+> Every thing
        item <+-| alert@+> that has
        item <+-| alert@+> beginning
        item <+-| alert@+> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                   Everything
        item <+-| alert@+> Every thing
                                                          that has
        item <+-| alert@+> that has
        item <+-| alert@+> beginning
        item <+-| alert@+> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                   Everything
        item <+-| alert@+> Every thing
                                                          that has
        item <+-| alert@+> that has
        item <+-| alert@+> beginning                     beginning
        item <+-| alert@+> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                   Everything
        item <+-| alert@+> Every thing
                                                          that has
        item <+-| alert@+> that has
        item <+-| alert@+> beginning                     beginning
        item <+-| alert@+> has end.                      has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                   Everything
        item <+-| alert@+> Every thing
                                                          that has
        item <+-| alert@+> that has
        item <+-| alert@+> beginning                     beginning
        item <+-| alert@+> has end.                      has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                     Everything
        item <+-| alert@+> Every thing
                                                            that has
        item <+-| alert@+> that has
        item <+-| alert@+> beginning                       beginning
        item <+-| alert@+> has end.                        has end.
        end{itemize}

                You can also use begin{itemize}[<+-|alert@+>] instead of
                individual ’item <+-| alert@+>’.
Beamer v3.0 Guide
   Overlays
      Simple Highlighting



Simple Highlighting
        item <+-| alert@+> for automatic highlighting.

        begin{itemize}                                     Everything
        item <+-| alert@+> Every thing
                                                            that has
        item <+-| alert@+> that has
        item <+-| alert@+> beginning                       beginning
        item <+-| alert@+> has end.                        has end.
        end{itemize}

                You can also use begin{itemize}[<+-|alert@+>] instead of
                individual ’item <+-| alert@+>’.
                You can also use structure instead of alert.
Beamer v3.0 Guide
   Overlays
      Alert



Alert for Highlighting
        item<n->alert<n>{stuff} is better than the previous automatic
        one.
        begin{itemize}
        item<2->alert<2> Every thing
        item<2->alert<3> that has
        item<2->alert<4> beginning
        item<2->alert<5> has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Alert



Alert for Highlighting
        item<n->alert<n>{stuff} is better than the previous automatic
        one.
        begin{itemize}                                   Everything
        item<2->alert<2> Every thing
                                                          that has
        item<2->alert<3> that has
        item<2->alert<4> beginning                      beginning
        item<2->alert<5> has end.                       has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Alert



Alert for Highlighting
        item<n->alert<n>{stuff} is better than the previous automatic
        one.
        begin{itemize}                                   Everything
        item<2->alert<2> Every thing
                                                          that has
        item<2->alert<3> that has
        item<2->alert<4> beginning                      beginning
        item<2->alert<5> has end.                       has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Alert



Alert for Highlighting
        item<n->alert<n>{stuff} is better than the previous automatic
        one.
        begin{itemize}                                   Everything
        item<2->alert<2> Every thing
                                                          that has
        item<2->alert<3> that has
        item<2->alert<4> beginning                      beginning
        item<2->alert<5> has end.                       has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Alert



Alert for Highlighting
        item<n->alert<n>{stuff} is better than the previous automatic
        one.
        begin{itemize}                                   Everything
        item<2->alert<2> Every thing
                                                          that has
        item<2->alert<3> that has
        item<2->alert<4> beginning                      beginning
        item<2->alert<5> has end.                       has end.
        end{itemize}
Beamer v3.0 Guide
   Overlays
      Alert



Alert for Highlighting
        item<n->alert<n>{stuff} is better than the previous automatic
        one.
        begin{itemize}                                   Everything
        item<2->alert<2> Every thing
                                                          that has
        item<2->alert<3> that has
        item<2->alert<4> beginning                      beginning
        item<2->alert<5> has end.                       has end.
        end{itemize}

        Note that item<2->alert<2> is same to item<2-| alert@2> .
Beamer v3.0 Guide
   Overlays
      Alternative



Alternative for Highlighting
                alt<n>{color{col1}..}{color{col2}..} for
                active/inactive highlighting
Beamer v3.0 Guide
   Overlays
      Alternative



Alternative for Highlighting
                alt<n>{color{col1}..}{color{col2}..} for
                active/inactive highlighting
                Example:
                    Everything
                    that has
                    beginning
                    has end.
Beamer v3.0 Guide
   Overlays
      Alternative



Alternative for Highlighting
                alt<n>{color{col1}..}{color{col2}..} for
                active/inactive highlighting
                Example:
                    Everything
                    that has
                    beginning
                    has end.
Beamer v3.0 Guide
   Overlays
      Alternative



Alternative for Highlighting
                alt<n>{color{col1}..}{color{col2}..} for
                active/inactive highlighting
                Example:
                    Everything
                    that has
                    beginning
                    has end.
Beamer v3.0 Guide
   Overlays
      Alternative



Alternative for Highlighting
                alt<n>{color{col1}..}{color{col2}..} for
                active/inactive highlighting
                Example:
                    Everything
                    that has
                    beginning
                    has end.
Beamer v3.0 Guide
   Overlays
      Alternative



Alternative for Highlighting
                alt<n>{color{col1}..}{color{col2}..} for
                active/inactive highlighting
                Example:
                    Everything
                    that has
                    beginning
                    has end.
                Source code:
               begin{itemize}
                 item<2-> alt<2>{color{blue}   Everything}{color{gray} Everything}
                 item<2-> alt<3>{color{blue}   that has}{color{gray} that has}
                 item<2-> alt<4>{color{blue}   beginning}{color{gray} beginning}
                 item<2-> alt<5>{color{blue}   has end.}{color{gray} has end.}
               end{itemize}
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
                 Ready?
                     Everything
                     that has
                     beginning
                     has end.
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
                 Ready?
                     Everything
                     that has
                     beginning
                     has end.
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
                 Ready?
                     Everything
                     that has
                     beginning
                     has end.
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
                 Ready?
                     Everything
                     that has
                     beginning
                     has end.
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
                 Ready?
                     Everything
                     that has
                     beginning
                     has end.
Beamer v3.0 Guide
   Overlays
      Temporal



Temporal for Highlighting
                 temporal<n>{before}{on}{after} for incremental
                 highlighting
                 Ready?
                     Everything
                     that has
                     beginning
                     has end.
                 Source code:
                 defhilite<#1>{%
                   temporal<#1>{color{gray}}{color{blue}}%
                                {color{blue!25}}}
                 ...
                 begin{itemize}
                   hilite<3> item Everything
                   hilite<4> item that has
                   hilite<5> item beginning
                   hilite<6> item has end.
                 end{itemize}
Beamer v3.0 Guide
   Overlays
      Other Highlightings



Other Highlightings
                textbf, textit, textsl, textrm, textsf, and color also
                understand overlays.
Beamer v3.0 Guide
   Overlays
      Other Highlightings



Other Highlightings
                textbf, textit, textsl, textrm, textsf, and color also
                understand overlays.
                Example
Beamer v3.0 Guide
   Overlays
      Other Highlightings



Other Highlightings
                textbf, textit, textsl, textrm, textsf, and color also
                understand overlays.
                Example
                        Everything (color< 3- 4> {olive}{Everything})
Beamer v3.0 Guide
   Overlays
      Other Highlightings



Other Highlightings
                textbf, textit, textsl, textrm, textsf, and color also
                understand overlays.
                Example
                        Everything (color< 3- 4> {olive}{Everything})
                        that has
Beamer v3.0 Guide
   Overlays
      Other Highlightings



Other Highlightings
                textbf, textit, textsl, textrm, textsf, and color also
                understand overlays.
                Example
                        Everything (color< 3- 4> {olive}{Everything})
                        that has
                        beginning (color< 5> [rgb]{.9, .5, .5}beginning)
Beamer v3.0 Guide
   Overlays
      Other Highlightings



Other Highlightings
                textbf, textit, textsl, textrm, textsf, and color also
                understand overlays.
                Example
                        Everything (color< 3- 4> {olive}{Everything})
                        that has
                        beginning (color< 5> [rgb]{.9, .5, .5}beginning)
                        has end.
Beamer v3.0 Guide
   Animation
      Animations



Animation
                For dynamic presentation Beamer supports transition, overlay, and
                animation.
                Animation depends on your imagination and LTEX skill.
                                                           A
Beamer v3.0 Guide
   Animation
      Animations



Animation
                For dynamic presentation Beamer supports transition, overlay, and
                animation.
                Animation depends on your imagination and LTEX skill.
                                                           A

                Supported animation types
                    Animate + Overlay
                    Animatevalue
                    Timed overlays (auto advancing)
Beamer v3.0 Guide
   Animation
      Animations



Animation
                For dynamic presentation Beamer supports transition, overlay, and
                animation.
                Animation depends on your imagination and LTEX skill.
                                                           A

                Supported animation types
                    Animate + Overlay
                    Animatevalue
                    Timed overlays (auto advancing)
                Use with caution as animation needs lots of slides
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?
                          Everything




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?
                          Everything
                          that has




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?
                          Everything
                          that has
                          beginning




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?
                          Everything
                          that has
                          beginning
                          has end.




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?
                          Everything
                          that has
                          beginning
                          has end.




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animate + Overlay



Animate + Overlay
                animate<n> 8 for automatic stepwise viewing
                Ready?
                          Everything
                          that has
                          beginning
                          has end.
                Source code:
                frame{animate<3-6>frametitle{Animate + Overlay}%
                ...
                begin{itemize}[<+->]
                  item Everything
                  item that has
                  item beginning
                  item has end.
                end{itemize}




            8 Remember that n can be n1-n2, n1-, or etc.
Beamer v3.0 Guide
   Animation
      Animatevalue



Animatevalue
                animate<n> to animate ‘n’ slides
                animatevalue<n>{name}{start}{end} for specifying
                animation effects
                     name: counter or dimension
                     start and end values of the value
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                                       Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                                       Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                                    Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                                    Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                                Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                             Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                          Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                       Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                     Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                                  Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                               Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                             Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                          Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                         Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                         Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                         Flying in from right!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                         Flying in from right!
Beamer v3.0 Guide
        Animation
           Flying Animation



     Flying Animation
                     animate and animatevalue are used.
                     This animation consumes 31 pages!
                     Ready to explore?
                              Flying in from right!
t!
Beamer v3.0 Guide
        Animation
          Flying Animation



   Flying Animation
                    animate and animatevalue are used.
                    This animation consumes 31 pages!
                    Ready to explore?
                             Flying in from right!
left!
Beamer v3.0 Guide
      Animation
           Flying Animation



   Flying Animation
                     animate and animatevalue are used.
                     This animation consumes 31 pages!
                     Ready to explore?
                              Flying in from right!
om left!
Beamer v3.0 Guide
     Animation
        Flying Animation



  Flying Animation
                  animate and animatevalue are used.
                  This animation consumes 31 pages!
                  Ready to explore?
                           Flying in from right!
from left!
Beamer v3.0 Guide
       Animation
          Flying Animation



    Flying Animation
                    animate and animatevalue are used.
                    This animation consumes 31 pages!
                    Ready to explore?
                             Flying in from right!
g in from left!
Beamer v3.0 Guide
     Animation
        Flying Animation



  Flying Animation
                  animate and animatevalue are used.
                  This animation consumes 31 pages!
                  Ready to explore?
                           Flying in from right!
ing in from left!
Beamer v3.0 Guide
     Animation
        Flying Animation



  Flying Animation
                  animate and animatevalue are used.
                  This animation consumes 31 pages!
                  Ready to explore?
                           Flying in from right!
Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                   Flying in from right!
Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                   Flying in from right!
    Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                     Flying in from right!
        Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                     Flying in from right!
            Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                      Flying in from right!
                Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                        Flying in from right!
                     Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation



Flying Animation
                animate and animatevalue are used.
                This animation consumes 31 pages!
                Ready to explore?
                         Flying in from right!
                         Flying in from left!
Beamer v3.0 Guide
   Animation
      Flying Animation - Source



Flying Animation - Source
               newcountopaqueness
               newdimenoffset
               frame{frametitle{Flying Animation}%
               animate<2-15,17-30>           % Actual animation values. Try <1-31>
               begin{itemize}
                item[]
                animatevalue<1-15>{opaqueness}{0}{100}%
                animatevalue<1-15>{offset}{6cm}{0cm}%
                begin{colormixin}{theopaqueness!averagebackgroundcolor}
                 hspace{offset} Flying in from {color{olive} right}!
                end{colormixin}

                item[]
                animatevalue<17-31>{opaqueness}{0}{100} % Starts at 17, not 16, to give
                animatevalue<17-31>{offset}{-5cm}{0cm}   % one pause!
                begin{colormixin}{theopaqueness!averagebackgroundcolor}
                 hspace{offset} Flying in from {color{olive} left}!
                end{colormixin}
               end{itemize}
Beamer v3.0 Guide
   Animation
      Timed Overlays



Timed Overlays
                Adobe Reader supports timed overlays, often called auto advancing.
                Two approaches
                       hypersetup{pdfpageduration=time} from hyperref package +
                       overlay macros
                       transduration<n>{time} from beamer package + overlay macros
                See beamer pstricks.pdf to see a fancy example.
                Try to do the same thing using PGF. Easy or not?
Beamer v3.0 Guide
   Beamer Themes
      Presentation Themes



Presentation Themes
                usetheme[option]{name}: Named to
                beamertheme<name>.sty.
                Old themes: bars, boxes, classic, default, lined, plain, shadow, sidebar,
                sidebardark, sidebardarktab, sidebartab, split, tree, treebars
                New themes (v3.0)
                       W/o navigation bar: default, boxes, Bergen, Madrid, Pittsburgh,
                       Rochester
                       With a tree-like navigation bar: Antibes, JuanLesPins, Montpellier.
                       With a TOC sidebar: Berkeley, PaloAlto, Goettingen, Marburg, Hannover
                       With a mini frame navigation: Berlin, Ilmenau, Dresden, Darmstadt,
                       Frankfurt, Singapore, Szeged
                       With section and subsection titles: Copenhagen, Luebeck, Malmoe,
                       Warsaw


                                                                                            Return
Beamer v3.0 Guide
   Beamer Themes
      Color Themes



Color Themes
                usecolortheme[option]{name}: Named to
                beamercolortheme<name>.sty.
                Default and special-purpose themes: default, structure (e.g.,
                usecolortheme[named=SeaGreen]{structure}.
                Complete color themes: albatross, beetle, crane, dove, fly, seagull
                Inner color themes: lily, orchid
                Outer color themes: whale, seahorse




                                                                                     Return
Beamer v3.0 Guide
   Beamer Themes
      Font Themes



Font Themes
                usecolortheme[option]{name}: Named to
                beamerfonttheme<name>.sty.
                New themes (v3.0): default, professionalfonts, serif, structurebold,
                structureitalicserif, structuresmallcapsserif




                                                                                       Return
Beamer v3.0 Guide
   Misc Features
      Hyperlinks and Buttons



Hyperlinks and Buttons
                   Beamer provides additional options for hyperlinks and buttons.
                   hyperlink{targetname}{beamergotobutton{text}} to create
                   link.
                   hypertarget{targetname}{text} to create target.
                   Some useful buttons are beamerbutton, beamergotobutton,
                   and beamerreturnbutton.
                   To go to the last slide, click here .
Beamer v3.0 Guide
   Misc Features
      Notes



Notes
                   To add notes to PDF screen, documentclass[notes]{beamer}.
                   To make only notes, documentclass[notesonly]{beamer}.
Beamer v3.0 Guide
   Misc Features
      Notes



Notes
                   To add notes to PDF screen, documentclass[notes]{beamer}.
                   To make only notes, documentclass[notesonly]{beamer}.
                   Notes addition by adding note[options]{...} after
                   frame{...}.
Beamer v3.0 Guide
   Misc Features
      Notes



Notes
                   To add notes to PDF screen, documentclass[notes]{beamer}.
                   To make only notes, documentclass[notesonly]{beamer}.
                   Notes addition by adding note[options]{...} after
                   frame{...}.
                   This slide has notes. Want to see them?
Beamer v3.0 Guide                                           Notes


2004-10-26       Misc Features                                                   To add notes to PDF screen, documentclass[notes]{beamer}.
                                                                                 To make only notes, documentclass[notesonly]{beamer}.
                                                                                 Notes addition by adding note[options]{...} after
                                                                                 frame{...}.
                     Notes                                                       This slide has notes. Want to see them?



                         Notes




                • Can you see me?
                • Two note options for note are itemize and enumerate.
                • beamertemplatenoteplain for plain note page!
Beamer v3.0 Guide
   Misc Features
      Merge for “trans” Output



Merge for “trans” Output
                   Beamer screen size = 128mm x 96mm
                   Merge transparency output on letter paper for printing!
                   documentclass{article} %
                   usepackage{pdfpages}
                   begin{document}
                   includepdf[nup=2x2,landscape,delta=5mm 5mm,%
                               scale=0.95,pages={1-18}]{trans.pdf}
                   end{document}


                   To return, click   here   .
Beamer v3.0 Guide
   Misc Features
      Movie



Movie
                   Beamer provides multimedia package.9
                   movie[options]{poster}{file_name}
                       poster: Poster for the movie (empty, text, or image).
                       file name: AVI or MPG.
                       Works with pdflatex and dvips/ps2pdf routes.
                   Some useful options
                        autostart, loop, repeat, palindrome
                        borderwidth, showcontrols, externalviewer




                   Example: clock.avi



              9 New in Version 2.2.   Can be used independently.
Beamer v3.0 Guide
   Misc Features
      Sound



Sound
                   Beamer provides multimedia package.
                   sound[options]{poster}{file_name}
                       Cannot be used with dvips/ps2pdf route.
                       File types depend on Acrobat Reader versions
                   Some useful options
                        autostart, automute, loop, repeat.
                        inlinesound to embed sound files to PDF.
                        channels (1), samplingrate (44100), bitspersample (16),
                        encoding (µ law) are important!
                   Example: sound[autostart,samplingrate=705000,bitspersample=16,
                   channels=2]{Example}{notify.wav}
Beamer v3.0 Guide
   Misc Features
      Logo and Footer



Footer Design
                   To add logo, logo{stuff} in the preamble.
                        The logo will place in the right bottom corner.
                        How to change it? – See below!
                   To redesign the footer, apply the following code:
                   usefoottemplate{vbox{%
                   tinycolouredline{structure!25}%
                     {color{white}textbf{insertshortauthorhfill%
                      insertshortinstitute}}%
                   tinycolouredline{structure}%
                     {color{white}textbf{insertshorttitle}hfill}%
                   }}
Beamer v3.0 Guide
   Misc Features
      Emulation



Emulations of Other Packages
                   You can use FoilTEX, (HA)Prosper, Seminar, or TEXPower slides within
                   Beamer.
                   Not perfect, but you can easily import your slides written from the
                   above four classes.
                   Prosper example:
                    usepackage{beamerprosper}             % Required
                    ...
                    overlays{8}{%
                    begin{slide}{Prosper Emulation Example}
                     begin{itemize}
                      item Backward writing is easy and simple:
                       fromSlide{8}{{color{green} P}}%
                       fromSlide{7}{{color{blue} R}}%
                       fromSlide{6}{{color{magenta} O}}%
                       fromSlide{5}{{color{cyan} S}}%
                       fromSlide{4}{{color{yellow} P}}%
                       fromSlide{3}{{color{olive} E}}%
                       fromSlide{2}{{{color{red} R}}}
                     end{itemize}
                    end{slide} }%
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                            R
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                           ER
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                         PER
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                       SPER
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                     OSPER
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                    ROSPER
Beamer v3.0 Guide
   Misc Features
      Prosper Result



Prosper Result
                   This slide is written with Prosper syntax!
                   Backward writing is easy and simple:
                   PROSPER
Beamer v3.0 Guide
   Misc Features
      Hangul



Hangul
                   If you installed HLTEX, load usepackage{hfont}.
                                     A

                       textgs{...} ⇒ Qï ~ £s  ¶¨
                                      e  ׬ Š†
                                       7 4 Ž
                       Click   here   to return.
                   Note: Hangul bookmarks and Hangul search in PDF are only
                   supported by dvipdfm(x). But Beamer does not support
                   dvipdfm(x).
                   Beamer option [cjk] is supported.
                   usepackage[utf8]{inputenc} is supported.
Beamer v3.0 Guide
   Misc Features
      Other Macros



Other Macros
                   To remove navigation symbols,
                   usenavigationsymbolstemplate{}.
Beamer v3.0 Guide
   Last Slide




Last Slide
                This page is directed from the button you clicked.
                To go back, click here .
Beamer v3.0 Guide
   Reference




Reference
               Ki-Joo Kim, Ki-Joo’s LTEX Documents
                                    A

               (http://www.geocities.com/kijoo2000/).
               Michael Wiedmann, Screen Presentation Tools (http:
               //www.miwie.org/presentations/presentations.html).

More Related Content

What's hot

Tutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi Subsystem
Tutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi SubsystemTutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi Subsystem
Tutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi SubsystemDheryta Jaisinghani
 
CCNA 2 Routing and Switching v5.0 Chapter 9
CCNA 2 Routing and Switching v5.0 Chapter 9CCNA 2 Routing and Switching v5.0 Chapter 9
CCNA 2 Routing and Switching v5.0 Chapter 9Nil Menon
 
Switch configuration
Switch configurationSwitch configuration
Switch configurationMuuluu
 
Linux Porting to a Custom Board
Linux Porting to a Custom BoardLinux Porting to a Custom Board
Linux Porting to a Custom BoardPatrick Bellasi
 
Provision Intel® Optane™ DC Persistent Memory in Linux*
Provision Intel® Optane™ DC Persistent Memory in Linux*Provision Intel® Optane™ DC Persistent Memory in Linux*
Provision Intel® Optane™ DC Persistent Memory in Linux*Intel® Software
 
Basic command to configure mikrotik
Basic command to configure mikrotikBasic command to configure mikrotik
Basic command to configure mikrotikTola LENG
 
Introduction to microcontroller
Introduction to microcontrollerIntroduction to microcontroller
Introduction to microcontrollerRajib Roy
 
12 archiving system v1.00_en
12 archiving system v1.00_en12 archiving system v1.00_en
12 archiving system v1.00_enconfidencial
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1Nil Menon
 
Android Bluetooth Introduction
Android Bluetooth IntroductionAndroid Bluetooth Introduction
Android Bluetooth IntroductionErin Yueh
 
Types of Microprocessor 8085 and 8086
Types of Microprocessor 8085 and 8086Types of Microprocessor 8085 and 8086
Types of Microprocessor 8085 and 8086Rubaiet Raihan
 

What's hot (20)

Linux I2C
Linux I2CLinux I2C
Linux I2C
 
Tutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi Subsystem
Tutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi SubsystemTutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi Subsystem
Tutorial WiFi driver code - Opening Nuts and Bolts of Linux WiFi Subsystem
 
Linux Device Tree
Linux Device TreeLinux Device Tree
Linux Device Tree
 
Mikrotik Tutorial
Mikrotik TutorialMikrotik Tutorial
Mikrotik Tutorial
 
CCNA 2 Routing and Switching v5.0 Chapter 9
CCNA 2 Routing and Switching v5.0 Chapter 9CCNA 2 Routing and Switching v5.0 Chapter 9
CCNA 2 Routing and Switching v5.0 Chapter 9
 
Switch configuration
Switch configurationSwitch configuration
Switch configuration
 
Linux Porting to a Custom Board
Linux Porting to a Custom BoardLinux Porting to a Custom Board
Linux Porting to a Custom Board
 
Nat pat
Nat patNat pat
Nat pat
 
Provision Intel® Optane™ DC Persistent Memory in Linux*
Provision Intel® Optane™ DC Persistent Memory in Linux*Provision Intel® Optane™ DC Persistent Memory in Linux*
Provision Intel® Optane™ DC Persistent Memory in Linux*
 
Basic command to configure mikrotik
Basic command to configure mikrotikBasic command to configure mikrotik
Basic command to configure mikrotik
 
Introduction to microcontroller
Introduction to microcontrollerIntroduction to microcontroller
Introduction to microcontroller
 
I2c drivers
I2c driversI2c drivers
I2c drivers
 
12 archiving system v1.00_en
12 archiving system v1.00_en12 archiving system v1.00_en
12 archiving system v1.00_en
 
U apsd explained and debugged i62-r2
U apsd explained and debugged i62-r2U apsd explained and debugged i62-r2
U apsd explained and debugged i62-r2
 
Introduction to Makefile
Introduction to MakefileIntroduction to Makefile
Introduction to Makefile
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1
 
What is Network Address Translation (NAT)
What is Network Address Translation (NAT)What is Network Address Translation (NAT)
What is Network Address Translation (NAT)
 
Android Bluetooth Introduction
Android Bluetooth IntroductionAndroid Bluetooth Introduction
Android Bluetooth Introduction
 
TCP IP Addressing
TCP IP AddressingTCP IP Addressing
TCP IP Addressing
 
Types of Microprocessor 8085 and 8086
Types of Microprocessor 8085 and 8086Types of Microprocessor 8085 and 8086
Types of Microprocessor 8085 and 8086
 

Viewers also liked

How to make boxed text with LaTeX
How to make boxed text with LaTeXHow to make boxed text with LaTeX
How to make boxed text with LaTeXVesa Linja-aho
 
Beamer guide By KiJoo Kim (a.k.a. Daisyweb)
Beamer guide By KiJoo Kim (a.k.a. Daisyweb)Beamer guide By KiJoo Kim (a.k.a. Daisyweb)
Beamer guide By KiJoo Kim (a.k.a. Daisyweb)mustainmtn
 
Least square method
Least square methodLeast square method
Least square methodSomya Bagai
 
What is Recycling: 7 Benefits of Recycling
What is Recycling: 7 Benefits of RecyclingWhat is Recycling: 7 Benefits of Recycling
What is Recycling: 7 Benefits of RecyclingPacebutler
 
Amazon.com: the Hidden Empire - Update 2013
Amazon.com: the Hidden Empire - Update 2013Amazon.com: the Hidden Empire - Update 2013
Amazon.com: the Hidden Empire - Update 2013Fabernovel
 

Viewers also liked (11)

How to make boxed text with LaTeX
How to make boxed text with LaTeXHow to make boxed text with LaTeX
How to make boxed text with LaTeX
 
Beamer tutorial
Beamer tutorialBeamer tutorial
Beamer tutorial
 
Basics of LaTeX
Basics of LaTeXBasics of LaTeX
Basics of LaTeX
 
Goddard Beamer
Goddard BeamerGoddard Beamer
Goddard Beamer
 
TUDelft Beamer
TUDelft BeamerTUDelft Beamer
TUDelft Beamer
 
LaTeX
LaTeXLaTeX
LaTeX
 
Beamer guide By KiJoo Kim (a.k.a. Daisyweb)
Beamer guide By KiJoo Kim (a.k.a. Daisyweb)Beamer guide By KiJoo Kim (a.k.a. Daisyweb)
Beamer guide By KiJoo Kim (a.k.a. Daisyweb)
 
Latex
LatexLatex
Latex
 
Least square method
Least square methodLeast square method
Least square method
 
What is Recycling: 7 Benefits of Recycling
What is Recycling: 7 Benefits of RecyclingWhat is Recycling: 7 Benefits of Recycling
What is Recycling: 7 Benefits of Recycling
 
Amazon.com: the Hidden Empire - Update 2013
Amazon.com: the Hidden Empire - Update 2013Amazon.com: the Hidden Empire - Update 2013
Amazon.com: the Hidden Empire - Update 2013
 

Similar to Beamer v3.0 Guide: Essential Elements

hrbust-beamer-presentation-theme.pdf
hrbust-beamer-presentation-theme.pdfhrbust-beamer-presentation-theme.pdf
hrbust-beamer-presentation-theme.pdfssuser7fdb11
 
Freewilly with beamerusetheme Torino.sty
Freewilly with beamerusetheme Torino.styFreewilly with beamerusetheme Torino.sty
Freewilly with beamerusetheme Torino.styHirwanto Iwan
 
dFontographer
dFontographerdFontographer
dFontographerInsforia
 
La famille *down
La famille *downLa famille *down
La famille *downtuxette
 
La famille *down
La famille *downLa famille *down
La famille *downtuxette
 
Chapter13_7e.ppt
Chapter13_7e.pptChapter13_7e.ppt
Chapter13_7e.pptmohaz5
 
SDN Mentor Hands On - Exercise 2
SDN Mentor Hands On - Exercise 2SDN Mentor Hands On - Exercise 2
SDN Mentor Hands On - Exercise 2dan_mcweeney
 
CSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsCSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsSanjoy Kr. Paul
 
Material Design Theme & Flutter by Eunsil Jo
Material Design Theme & Flutter by Eunsil JoMaterial Design Theme & Flutter by Eunsil Jo
Material Design Theme & Flutter by Eunsil JoEunsil Jo
 
Emissive materials v ray for sketch-up manual
Emissive materials   v ray for sketch-up manualEmissive materials   v ray for sketch-up manual
Emissive materials v ray for sketch-up manualJaime Honigman
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAAiman Hud
 
Knocking Down Walls
Knocking Down WallsKnocking Down Walls
Knocking Down Wallstwh
 
CSS3 : Animation ,Transitions, Gradients
CSS3 : Animation ,Transitions, GradientsCSS3 : Animation ,Transitions, Gradients
CSS3 : Animation ,Transitions, GradientsJatin_23
 
rmarkdown.pdf
rmarkdown.pdfrmarkdown.pdf
rmarkdown.pdfTheZephyr
 
Tailwind Background Color Unlocking its Full Potential.pdf
Tailwind Background Color Unlocking its Full Potential.pdfTailwind Background Color Unlocking its Full Potential.pdf
Tailwind Background Color Unlocking its Full Potential.pdfRonDosh
 

Similar to Beamer v3.0 Guide: Essential Elements (20)

hrbust-beamer-presentation-theme.pdf
hrbust-beamer-presentation-theme.pdfhrbust-beamer-presentation-theme.pdf
hrbust-beamer-presentation-theme.pdf
 
Freewilly with beamerusetheme Torino.sty
Freewilly with beamerusetheme Torino.styFreewilly with beamerusetheme Torino.sty
Freewilly with beamerusetheme Torino.sty
 
Feathertheme
FeatherthemeFeathertheme
Feathertheme
 
dFontographer
dFontographerdFontographer
dFontographer
 
La famille *down
La famille *downLa famille *down
La famille *down
 
Briefing workshop laser cutting eng 2012
Briefing workshop laser cutting eng 2012Briefing workshop laser cutting eng 2012
Briefing workshop laser cutting eng 2012
 
La famille *down
La famille *downLa famille *down
La famille *down
 
pastel
pastelpastel
pastel
 
pastel
pastelpastel
pastel
 
Chapter13_7e.ppt
Chapter13_7e.pptChapter13_7e.ppt
Chapter13_7e.ppt
 
SDN Mentor Hands On - Exercise 2
SDN Mentor Hands On - Exercise 2SDN Mentor Hands On - Exercise 2
SDN Mentor Hands On - Exercise 2
 
CSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsCSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and Cons
 
Material Design Theme & Flutter by Eunsil Jo
Material Design Theme & Flutter by Eunsil JoMaterial Design Theme & Flutter by Eunsil Jo
Material Design Theme & Flutter by Eunsil Jo
 
Emissive materials v ray for sketch-up manual
Emissive materials   v ray for sketch-up manualEmissive materials   v ray for sketch-up manual
Emissive materials v ray for sketch-up manual
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Knocking Down Walls
Knocking Down WallsKnocking Down Walls
Knocking Down Walls
 
CSS3 : Animation ,Transitions, Gradients
CSS3 : Animation ,Transitions, GradientsCSS3 : Animation ,Transitions, Gradients
CSS3 : Animation ,Transitions, Gradients
 
CSS 3
CSS 3CSS 3
CSS 3
 
rmarkdown.pdf
rmarkdown.pdfrmarkdown.pdf
rmarkdown.pdf
 
Tailwind Background Color Unlocking its Full Potential.pdf
Tailwind Background Color Unlocking its Full Potential.pdfTailwind Background Color Unlocking its Full Potential.pdf
Tailwind Background Color Unlocking its Full Potential.pdf
 

Beamer v3.0 Guide: Essential Elements

  • 1. Beamer v3.0 Guide Beamer v3.0 Guide Ki-Joo Kim October 26, 2004
  • 2. Beamer v3.0 Guide Why Beamer? Why Beamer? Pros: Both dvips/ps2pdf1 and pdflatex supports Rich overlay and transition effects Navigational bars and buttons Outputs: screen, transparency, handouts, and notes Emulation of other PDF presentation tools such as Prosper and FoilTEX Cons: Difficult to design a template 1 You need this route if you use PSTricks.
  • 3. Beamer v3.0 Guide Beamer Structure Basic Code Basic Code I Beamer class loading with themes documentclass[slidestop,compress,mathserif]{beamer} %usepackage[bars]{beamerthemetree} % Beamer Theme v 2.2 usetheme{Antibes} % Beamer theme usecolortheme{lily} % Beamer color theme
  • 4. Beamer v3.0 Guide Beamer Structure Basic Code Basic Code I Beamer class loading with themes documentclass[slidestop,compress,mathserif]{beamer} %usepackage[bars]{beamerthemetree} % Beamer Theme v 2.2 usetheme{Antibes} % Beamer theme usecolortheme{lily} % Beamer color theme Cover title title{} author{} institute{} begin{document} begin{frame} % Cover slide titlepage end{frame} % Instead, you can use frame{titlepage}} (Beamer v 2.2 macro)
  • 5. Beamer v3.0 Guide Beamer Structure Basic Code Basic Code II Main slide frame section{Introduction} % Bookmark information subsection{History} % Bookmark information begin{frame}[options] frametitle{History} ... slide contents ... end{frame}
  • 6. Beamer v3.0 Guide Beamer Structure Five Themes Five Themes The main difference between v 3.0 and v 2.2 is Beamer themes. Five theme categories: Presentation Themes – Slide template Color Themes – Color scheme for slide template Font Themes Inner Themes Outer Themes Example documentclass[slidestop,compress,mathserif]{beamer} %usepackage[bars]{beamerthemetree} % Beamer Theme v 2.2 usetheme{Antibes} % Beamer theme usecolortheme{lily} % Beamer color theme Go to Themes for more information.
  • 7. Beamer v3.0 Guide Beamer Structure Layout Options Layout Options [slidestop] puts frame titles on the top left corner (default=[slidescentered]). [compress] makes all navigation bars as small as possible (default=[uncompressed]). [red] changes navigation bars and titles to reddish color. blue: Default color scheme red: Used in this presentation brown blackandwhite: Good for transparencies
  • 8. Beamer v3.0 Guide Beamer Structure Output Options Output Options Default: PDF screen (size 128mm × 96 mm)2 . [handout] for PDF handouts. [trans] for PDF transparency. ⇒ For handout and trans, you need some extra work to enlarge the size. Click here to see an example! [notes=hide/show/only] for notes. Hide notes (default), add notes to the PDF screen, or notes only PDF. 2 Monitor’s 4:3 aspect ratio.
  • 9. Beamer v3.0 Guide Beamer Structure Additional Beamer Options Additional Beamer Options [hyperref={bookmarks=false}] removes bookmarks. [cjk] for CJK typesetting. ⇒ For hangul, use hfont package. usepackage[utf8]{inputenc} for Unicode.
  • 10. Frame Options ‘frame[plain]frametitle...’ for plane frame style as used in this slide! [containsverbatim] for using verbatim environment and verb command. [allowframebreaks] for automatic split of frames if the contents do not fit in a single slide. [shrink] for shrinking the contents to fit in a single slide. [squeeze] for squeezing vertical space.
  • 11. Beamer v3.0 Guide Beamer Structure Transparency Effects Transparency Effects All overlayed stuffs are covered (default) beamertemplatetransparentcoveredhigh makes all covered text highly transparent beamertemplatetransparentcovereddynamicmedium makes all covered text quite transparent, but is a dynamic way. The range of dynamics is smaller.
  • 12. Beamer v3.0 Guide Fonts Text and Math Fonts Text and Math Fonts I Excellent support for selecting text and math fonts. Default text and math fonts: CMSS Beamer option [sans] for text font mathsans is default. Equivalent to usefonttheme{default} Beamer option [sefif] for text font mathserif is default. Equivalent to usefonttheme[options]{serif} Beamer option [mathsans/mathserif] for math font
  • 13. Beamer v3.0 Guide Fonts Text and Math Fonts Text and Math Fonts II Beamer option [professionalfonts] to turn off Beamer’s internal font rewriting (⇒ Equivalent to usefonttheme{professionalfonts}) Additional font theme macros usefonttheme{structurebold} for bold faced structures (titles, headlines, footlines, sidebars, ...) usefonttheme{structureitalicserif} usefonttheme{structuresmallcapsserif} Font settings in this document: documentclass[mathserif]{beamer} % usepackage{lucidaso} % Lucida Bright (SO Version) usepackage[small]{eulervm} % Euler VM
  • 14. Beamer v3.0 Guide Fonts Font Size Font Size Default font size: 11pt (At the full screen mode this font size corresponds to 22 pt.) Available font size options: 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt
  • 15. Beamer v3.0 Guide Colors Color Definition Color Definition Beamer loads xcolor package by Uwe Kern, which also supports color and pstcol. ‘xcolor’ definition xdefinecolor{lavendar}{rgb}{0.8,0.6,1} xdefinecolor{olive}{cmyk}{0.64,0,0.95,0.4} colorlet{structure}{green!60!black} for color substitution Predefined colors: red, green, blue, cyan, magenta, yellow, black, darkgray, gray, lightgray, orange, violet, purple, and brown If you want to use the options of ‘color’ package, pass [color=option] option to Beamer. If you want to use ‘pstcol’, pass [xcolor=pst,dvips] option to Beamer. Now you should use ‘dvips/ps2pdf’
  • 16. Beamer v3.0 Guide Colors More colors in xcolor package More colors in ‘xcolor’ package Color mixing is very easy! color example meaning green!80!gray text 80% green + 20% gray green!60!gray text 60% green + 40% gray green!40!gray text 40% green + 60% gray -green text remove green from above You can use animate (in Beamer) or multido (with PSTricks) for fade-in and fade-out!
  • 17. Beamer v3.0 Guide Colors Highlighting Colors Highlighting Colors Beamer also has theme-specific highlighting colors: alert{text} ⇒ text structure{text} ⇒ text To change these colors: usealerttemplate{color{red}}{} to change red. usestructuretemplate{color{blue}}{} to change blue.
  • 18. Beamer v3.0 Guide Colors Background Colors Background Colors To set solid background color, beamersetaveragebackground{color} or beamertemplatesolidbackgroundcolor{color} To set gradient background color, beamertemplateshadingbackground{color1}{color2}. ⇒ The colors in this slide is {blue!5}{yellow!10}. To set grid background, beamertemplategridbackground[grid_space].
  • 19. Beamer v3.0 Guide Colors Color Example Color Example Color changes in Navigational bars Background structure{..} color
  • 20. Beamer v3.0 Guide Colors Color Example Color Example Color changes in Navigational bars Background structure{..} color Code: colorlet{mystruct}{structure} % Save current structure colorlet{structure}{magenta} % New structure usestructuretemplate{color{structure}}{} % structure{..} beamertemplateshadingbackground{yellow!50}{magenta!50} % New background frame{% ... }% % Back to the original "structure" and bg color schemes colorlet{structure}{mystruct} beamertemplateshadingbackground{blue!10}{yellow!10}
  • 21. Beamer v3.0 Guide Verbatim Verbatim w/o Overlays Verbatim w/o Overlays ‘verb’ or ‘verbatim’ cannot be directly used in Beamer! If there is no overlay, use frame[containsverbatim] frame[containsverbatim]{frametitle{..}% begin{verbatim} .. verbatim contents .. end{verbatim} }% Now in-line verbatim is possible with ‘verb’. Color and size can be easily changed.
  • 22. Beamer v3.0 Guide Verbatim Inline Verbatim with Overlyas Inline Verbatim with Overlays My solution: path{..} instead of verb. Color: Hello, Hello Size: Hello, Hello, Hello
  • 23. Beamer v3.0 Guide Verbatim Inline Verbatim with Overlyas Inline Verbatim with Overlays My solution: path{..} instead of verb. Color: Hello, Hello Size: Hello, Hello, Hello Beamer solution: defverbcommand|contents| outside the frame. Define defverbmyverb|Hello,World!| Then use myverb ⇒ Hello, World!
  • 24. Beamer v3.0 Guide Verbatim Verbatim with Overlays Verbatim with Overlays Use lstlisting environment instead of verbatim environment. Define defverbatim[colored]command{contents} outside frame. ‘contents’ are the listing environment.
  • 25. Beamer v3.0 Guide Verbatim Verbatim with Overlays Verbatim with Overlays Use lstlisting environment instead of verbatim environment. Define defverbatim[colored]command{contents} outside frame. ‘contents’ are the listing environment. Example: defverbatim[colored]testcode{% begin{lstlisting}[frame=single,emph={ga},emphstyle=color{olive}] .... end{lstlisting}}% frame{% testcode }%
  • 26. Beamer v3.0 Guide Figures Figures Intro Figures Intro Standard LTEX figure environment A can be used. Beamer also loads pgf package. So PGF command, pgfimage[]{file}, is also possible. includegraphics, pgfimage, and pdfuseimage understand overlays. Figure: Tiger
  • 27. Beamer v3.0 Guide Figures PGF Macros PGF Macros PSTricks and PGF can be used for locating figures exactly . Grid size of slide: (LL × UR) = (0cm,-7cm) × (11cm,1cm) PGF macro for locating figures: pgfputat{pgfxy(0,-6.5)}{pgfbox[left,base]{pgfimage[width=1cm]{tiger}}} If you use the same figure several times, use pgfdecalreimage and pgfuseimage. Or just use includegraphics.
  • 28. Beamer v3.0 Guide Figures Figures inside Columns Figures inside Columns Figures inside ‘columns’ environment need exact position.
  • 29. Beamer v3.0 Guide Figures Figures inside Columns Figures inside Columns Figures inside ‘columns’ environment need exact position. PGF macros (PDF, PNG, and JPEG with pdflatex) begin{columns} begin{column}{0.65textwidth} AB end{column} begin{column}{0.35textwidth} pgfputat{pgfxy(0,0)}{pgfbox[left,top]{includegraphics[width=textwidth]{tig end{column} end{columns}
  • 30. Beamer v3.0 Guide Figures Figures inside Columns Figures inside Columns Figures inside ‘columns’ environment need exact position. PGF macros (PDF, PNG, and JPEG with pdflatex) begin{columns} begin{column}{0.65textwidth} AB end{column} begin{column}{0.35textwidth} pgfputat{pgfxy(0,0)}{pgfbox[left,top]{includegraphics[width=textwidth]{tig end{column} end{columns} PSTricks macros (EPS with dvips) begin{columns} begin{column}{0.65textwidth} AB end{column} begin{column}{0.35textwidth} rput[lt](0,0){includegraphics[clip=true,width=textwidth]{tiger}} end{column} end{columns}
  • 31. Beamer v3.0 Guide Figures Zooming Figures Zooming Figures Figures can be zoomed3 using framezoom<button overlay><zoomed overlay>(x,y)(w,h). (x,y): Upper left coordinate point (w,h): Width and height for zooming Example: frame{frametitle{Zooming Figures -- Example} framezoom<1><2>[border](0.5cm,0.5cm)(2cm,1.5cm) framezoom<1><3>[border](1cm,3cm)(2cm,1.5cm) framezoom<1><4>[border](3cm,2cm)(2cm,2cm) pgfimage[height=6cm]{tiger} %includegraphics[height=6cm]{tiger} is working, too! }% 3 New in Version 2.20
  • 32. Beamer v3.0 Guide Figures Zooming Figures – Example Zooming Figures – Example Click the border to zoom-in.
  • 33. Beamer v3.0 Guide Figures Zooming Figures – Example Zooming Figures – Example
  • 34. Beamer v3.0 Guide Figures Zooming Figures – Example Zooming Figures – Example
  • 35. Beamer v3.0 Guide Figures Zooming Figures – Example Zooming Figures – Example
  • 36. Beamer v3.0 Guide Figures Drawing Figures Drawing Figures The most powerful and easiest-to-use package, PSTricks, does not work with pdflatex due to fundamental differences in PS and PDF. 4 Note that Beamer does not support dvipdfm.
  • 37. Beamer v3.0 Guide Figures Drawing Figures Drawing Figures The most powerful and easiest-to-use package, PSTricks, does not work with pdflatex due to fundamental differences in PS and PDF. PGF (portable graphics format) by the Beamer author. Less powerful than PSTricks, but works fine. Supports dvips, dvipdfm4 , and pdflatex. 4 Note that Beamer does not support dvipdfm.
  • 38. Beamer v3.0 Guide Figures Drawing Figures Drawing Figures The most powerful and easiest-to-use package, PSTricks, does not work with pdflatex due to fundamental differences in PS and PDF. PGF (portable graphics format) by the Beamer author. Less powerful than PSTricks, but works fine. Supports dvips, dvipdfm4 , and pdflatex. MetaPost Works with dvips/ps2pdf, dvipdfm, and pdflatex 4 Note that Beamer does not support dvipdfm.
  • 39. Beamer v3.0 Guide Figures Drawing Figures Drawing Figures The most powerful and easiest-to-use package, PSTricks, does not work with pdflatex due to fundamental differences in PS and PDF. PGF (portable graphics format) by the Beamer author. Less powerful than PSTricks, but works fine. Supports dvips, dvipdfm4 , and pdflatex. MetaPost Works with dvips/ps2pdf, dvipdfm, and pdflatex I prefer Beamer + PSTricks. ⇒ See beamer pstricks.pdf [1] 4 Note that Beamer does not support dvipdfm.
  • 40. Beamer v3.0 Guide Figures Masking Figures Masking Figures Want to mask white background of your images? + = 5 I do not know the exact requirement.
  • 41. Beamer v3.0 Guide Figures Masking Figures Masking Figures Want to mask white background of your images? + = Make a mask image in 256 Colors and JPEG Compression5 5 I do not know the exact requirement.
  • 42. Beamer v3.0 Guide Figures Masking Figures Masking Figures Want to mask white background of your images? + = Make a mask image in 256 Colors and JPEG Compression5 Use pgfdeclaremask in pdf package. But only works with pdflatex! 5 I do not know the exact requirement.
  • 43. Beamer v3.0 Guide Figures Masking Figures Masking Figures Want to mask white background of your images? + = Make a mask image in 256 Colors and JPEG Compression5 Use pgfdeclaremask in pdf package. But only works with pdflatex! Source code: pgfdeclaremask{mymask}{ppt.mask} % Mask image: ppt.mask.jpg pgfimage[mask=mymask,interpolate=true]{ppt} % Masking ppt.png 5 I do not know the exact requirement.
  • 44. Beamer v3.0 Guide Local Structures Fancy Bullets Fancy Bullets 1 beamertemplateballitem in the preamble 2 itemize environment ⇒ Fancy ball 3 enumerate environment ⇒ Fancy numbered ball (used here).
  • 45. Beamer v3.0 Guide Local Structures Fancy Bullets Fancy Bullets 1 beamertemplateballitem in the preamble 2 itemize environment ⇒ Fancy ball 3 enumerate environment ⇒ Fancy numbered ball (used here). To use different enumerate templates, begin{enumerate}[minitemplate] item ... end{enumerate} where mini template can be ‘A’, ‘a’, ‘i’, ‘I’, ‘(A)’, . . . . But the indentation may be changed (bug?) i Item 1 ii Item 2
  • 46. Beamer v3.0 Guide Local Structures Framed Text Framed Text Example Code: begin{beamerboxesrounded}[scheme=alert,shadow=true]{Theorem} $A = B$. end{beamerboxesrounded}} Result: Theorem A = B.
  • 47. Beamer v3.0 Guide Local Structures Columns Columns Use LTEX minipage A environment or Use Beamer columns environment begin{columns} begin{column}[pos]{width} ... contents ... end{column} begin{column}[pos]{width} ... contents ... end{column} end{columns}
  • 48. Beamer v3.0 Guide Local Structures Tables Tables Standard LTEX table environment A Table Overlays: can be used. onslide inside ‘overprint’ environment for showing overlays in the right example.
  • 49. Beamer v3.0 Guide Local Structures Tables Tables Standard LTEX table environment A Table Overlays: can be used. Cells are growing onslide inside ‘overprint’ environment for showing overlays in the right example.
  • 50. Beamer v3.0 Guide Local Structures Tables Tables Standard LTEX table environment A Table Overlays: can be used. Cells are growing onslide inside ‘overprint’ step by environment for showing overlays in the right example.
  • 51. Beamer v3.0 Guide Local Structures Tables Tables Standard LTEX table environment A Table Overlays: can be used. Cells are growing onslide inside ‘overprint’ step by environment for showing overlays step. in the right example.
  • 52. Beamer v3.0 Guide Local Structures Tables Tables Standard LTEX table environment A Table Overlays: can be used. Cells are growing onslide inside ‘overprint’ step by environment for showing overlays step. Finished! in the right example.
  • 53. Beamer v3.0 Guide Transitions Transitions PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace, Split, Wipe. Transition commands are inside frame environment. Beamer transition commands understand overlays. Without overlays the transition is global to the current frame.
  • 54. Beamer v3.0 Guide Transitions Transitions PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace, Split, Wipe. Transition commands are inside frame environment. Beamer transition commands understand overlays. Without overlays the transition is global to the current frame. Overlayed transition examples: Glitter at /Di 315 (default on this slide): transglitter[direction=315]
  • 55. Beamer v3.0 Guide Transitions Transitions PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace, Split, Wipe. Transition commands are inside frame environment. Beamer transition commands understand overlays. Without overlays the transition is global to the current frame. Overlayed transition examples: Glitter at /Di 315 (default on this slide): transglitter[direction=315] Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3>
  • 56. Beamer v3.0 Guide Transitions Transitions PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace, Split, Wipe. Transition commands are inside frame environment. Beamer transition commands understand overlays. Without overlays the transition is global to the current frame. Overlayed transition examples: Glitter at /Di 315 (default on this slide): transglitter[direction=315] Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3> . . . . . . . . . . . . . . . . . . . . . . . Boxin: transboxin<4> . . . . . . . . . . . . . . . . . . . . . . .
  • 57. Beamer v3.0 Guide Transitions Transitions PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace, Split, Wipe. Transition commands are inside frame environment. Beamer transition commands understand overlays. Without overlays the transition is global to the current frame. Overlayed transition examples: Glitter at /Di 315 (default on this slide): transglitter[direction=315] Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3> . . . . . . . . . . . . . . . . . . . . . . . Boxin: transboxin<4> . . . . . . . . . . . . . . . . . . . . . . . Dissolve transition: transdissolve<5>
  • 58. Beamer v3.0 Guide Transitions Transitions PDF supports seven transitions: Blinds, Box, Dissolve, Glitter, Replace, Split, Wipe. Transition commands are inside frame environment. Beamer transition commands understand overlays. Without overlays the transition is global to the current frame. Overlayed transition examples: Glitter at /Di 315 (default on this slide): transglitter[direction=315] Boxout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . transboxout<3> . . . . . . . . . . . . . . . . . . . . . . . Boxin: transboxin<4> . . . . . . . . . . . . . . . . . . . . . . . Dissolve transition: transdissolve<5> Split vertical out: transsplitverticalout<6>
  • 59. Beamer v3.0 Guide Overlays Overview Overlays - Overview Overlays is the heart of dynamic PDF presentation. Beamer provides plenty of overlay commands.
  • 60. Beamer v3.0 Guide Overlays Overview Overlays - Overview Overlays is the heart of dynamic PDF presentation. Beamer provides plenty of overlay commands. Key overlay functions are: Stepwise viewing Replace Highlighting
  • 61. Beamer v3.0 Guide Overlays Overview Overlays - Overview Overlays is the heart of dynamic PDF presentation. Beamer provides plenty of overlay commands. Key overlay functions are: Stepwise viewing Replace Highlighting Various overlay counters: ‘n’, ‘n-’, ‘-n’, ‘n1-n2’, ‘+-’.
  • 62. Beamer v3.0 Guide Overlays Pause Pause for Stepwise Viewing pause command6 for easy and simple overlays. begin{itemize} pause item Every thing pause item that has pause item beginning pause item has end. end{itemize} 6 There is also unpause command.
  • 63. Beamer v3.0 Guide Overlays Pause Pause for Stepwise Viewing pause command6 for easy and simple overlays. begin{itemize} Every thing pause item Every thing pause item that has pause item beginning pause item has end. end{itemize} 6 There is also unpause command.
  • 64. Beamer v3.0 Guide Overlays Pause Pause for Stepwise Viewing pause command6 for easy and simple overlays. begin{itemize} Every thing pause item Every thing that has pause item that has pause item beginning pause item has end. end{itemize} 6 There is also unpause command.
  • 65. Beamer v3.0 Guide Overlays Pause Pause for Stepwise Viewing pause command6 for easy and simple overlays. begin{itemize} Every thing pause item Every thing that has pause item that has pause item beginning beginning pause item has end. end{itemize} 6 There is also unpause command.
  • 66. Beamer v3.0 Guide Overlays Pause Pause for Stepwise Viewing pause command6 for easy and simple overlays. begin{itemize} Every thing pause item Every thing that has pause item that has pause item beginning beginning pause item has end. has end. end{itemize} 6 There is also unpause command.
  • 67. Beamer v3.0 Guide Overlays Pause Pause for Stepwise Viewing pause command6 for easy and simple overlays. begin{itemize} Every thing pause item Every thing that has pause item that has pause item beginning beginning pause item has end. has end. end{itemize} Note that pause does not know overlay counters. 6 There is also unpause command.
  • 68. Beamer v3.0 Guide Overlays Pause: Table Example Pause: Table Example Row increment in a table:
  • 69. Beamer v3.0 Guide Overlays Pause: Table Example Pause: Table Example Row increment in a table: Class A B C D X 1 2 3 4
  • 70. Beamer v3.0 Guide Overlays Pause: Table Example Pause: Table Example Row increment in a table: Class A B C D X 1 2 3 4 Y 3 4 5 6
  • 71. Beamer v3.0 Guide Overlays Pause: Table Example Pause: Table Example Row increment in a table: Class A B C D X 1 2 3 4 Y 3 4 5 6 Z 5 6 7 8
  • 72. Beamer v3.0 Guide Overlays Pause: Table Example Pause: Table Example Row increment in a table: Class A B C D X 1 2 3 4 Y 3 4 5 6 Z 5 6 7 8 Source code: rowcolors[]{1}{blue!20}{blue!10} begin{tabular}{l!{vrule}cccc} Class & A & B & C & D hline X & 1 & 2 & 3 & 4 pause Y & 3 & 4 & 5 & 6 pause Z & 5 & 6 & 7 & 8 end{tabular}
  • 73. Beamer v3.0 Guide Overlays Onslide Onslide for Stepwise Viewing onslide<n->stuff shows stuff on the given slides.
  • 74. Beamer v3.0 Guide Overlays Onslide Onslide for Stepwise Viewing onslide<n->stuff shows stuff on the given slides. Example: Column increment in a table: Class A X 1 Y 3 Z 5
  • 75. Beamer v3.0 Guide Overlays Onslide Onslide for Stepwise Viewing onslide<n->stuff shows stuff on the given slides. Example: Column increment in a table: Class A B X 1 2 Y 3 4 Z 5 6
  • 76. Beamer v3.0 Guide Overlays Onslide Onslide for Stepwise Viewing onslide<n->stuff shows stuff on the given slides. Example: Column increment in a table: Class A B C X 1 2 3 Y 3 4 5 Z 5 6 7
  • 77. Beamer v3.0 Guide Overlays Onslide Onslide for Stepwise Viewing onslide<n->stuff shows stuff on the given slides. Example: Column increment in a table: Class A B C D X 1 2 3 4 Y 3 4 5 6 Z 5 6 7 8
  • 78. Beamer v3.0 Guide Overlays Onslide Onslide for Stepwise Viewing onslide<n->stuff shows stuff on the given slides. Example: Column increment in a table: Class A B C D X 1 2 3 4 Y 3 4 5 6 Z 5 6 7 8 Source code: rowcolors[]{1}{blue!20}{blue!10} begin{tabular}{l!{vrule}c<{onslide<2->}c<{onslide<3->} % c<{onslide<4->}c<{onslide}c} Class & A & B & C & D X & 1 & 2 & 3 & 4 Y & 3 & 4 & 5 & 6 Z & 5 & 6 & 7 & 8 end{tabular}
  • 79. Beamer v3.0 Guide Overlays Item I Item I for Stepwise Viewing item<n-> for incremental overlays with overlay counters. begin{itemize} item<2-> Every thing item<3-> that has item<4-> beginning item<5-> has end. end{itemize}
  • 80. Beamer v3.0 Guide Overlays Item I Item I for Stepwise Viewing item<n-> for incremental overlays with overlay counters. begin{itemize} Everything item<2-> Every thing item<3-> that has item<4-> beginning item<5-> has end. end{itemize}
  • 81. Beamer v3.0 Guide Overlays Item I Item I for Stepwise Viewing item<n-> for incremental overlays with overlay counters. begin{itemize} Everything item<2-> Every thing that has item<3-> that has item<4-> beginning item<5-> has end. end{itemize}
  • 82. Beamer v3.0 Guide Overlays Item I Item I for Stepwise Viewing item<n-> for incremental overlays with overlay counters. begin{itemize} Everything item<2-> Every thing that has item<3-> that has item<4-> beginning beginning item<5-> has end. end{itemize}
  • 83. Beamer v3.0 Guide Overlays Item I Item I for Stepwise Viewing item<n-> for incremental overlays with overlay counters. begin{itemize} Everything item<2-> Every thing that has item<3-> that has item<4-> beginning beginning item<5-> has end. has end. end{itemize}
  • 84. Beamer v3.0 Guide Overlays Item I Item I for Stepwise Viewing item<n-> for incremental overlays with overlay counters. begin{itemize} Everything item<2-> Every thing that has item<3-> that has item<4-> beginning beginning item<5-> has end. has end. end{itemize} What if more items are inserted?
  • 85. Beamer v3.0 Guide Overlays Item II Item II for Stepwise Viewing <+-> for incremental overlays w/o overlay counters. begin{itemize}[<+->] item Every thing item that has item beginning item has end. end{itemize}
  • 86. Beamer v3.0 Guide Overlays Item II Item II for Stepwise Viewing <+-> for incremental overlays w/o overlay counters. begin{itemize}[<+->] Everything item Every thing item that has item beginning item has end. end{itemize}
  • 87. Beamer v3.0 Guide Overlays Item II Item II for Stepwise Viewing <+-> for incremental overlays w/o overlay counters. begin{itemize}[<+->] Everything item Every thing that has item that has item beginning item has end. end{itemize}
  • 88. Beamer v3.0 Guide Overlays Item II Item II for Stepwise Viewing <+-> for incremental overlays w/o overlay counters. begin{itemize}[<+->] Everything item Every thing that has item that has item beginning beginning item has end. end{itemize}
  • 89. Beamer v3.0 Guide Overlays Item II Item II for Stepwise Viewing <+-> for incremental overlays w/o overlay counters. begin{itemize}[<+->] Everything item Every thing that has item that has item beginning beginning item has end. has end. end{itemize}
  • 90. Beamer v3.0 Guide Overlays Item II Item II for Stepwise Viewing <+-> for incremental overlays w/o overlay counters. begin{itemize}[<+->] Everything item Every thing that has item that has item beginning beginning item has end. has end. end{itemize} Note that item<+-> can be used instead of global setting of begin{itemize}[<+->].
  • 91. Beamer v3.0 Guide Overlays Item III Item III for Stepwise Viewing item<n1-n2> for fine control of overlays. begin{itemize} item<1-> Every thing item<3-4> that has item<4> beginning item<2-5> has end. end{itemize}
  • 92. Beamer v3.0 Guide Overlays Item III Item III for Stepwise Viewing item<n1-n2> for fine control of overlays. begin{itemize} Everything item<1-> Every thing item<3-4> that has item<4> beginning item<2-5> has end. end{itemize}
  • 93. Beamer v3.0 Guide Overlays Item III Item III for Stepwise Viewing item<n1-n2> for fine control of overlays. begin{itemize} Everything item<1-> Every thing item<3-4> that has item<4> beginning item<2-5> has end. has end. end{itemize}
  • 94. Beamer v3.0 Guide Overlays Item III Item III for Stepwise Viewing item<n1-n2> for fine control of overlays. begin{itemize} Everything item<1-> Every thing that has item<3-4> that has item<4> beginning item<2-5> has end. has end. end{itemize}
  • 95. Beamer v3.0 Guide Overlays Item III Item III for Stepwise Viewing item<n1-n2> for fine control of overlays. begin{itemize} Everything item<1-> Every thing that has item<3-4> that has item<4> beginning beginning item<2-5> has end. has end. end{itemize}
  • 96. Beamer v3.0 Guide Overlays Item III Item III for Stepwise Viewing item<n1-n2> for fine control of overlays. begin{itemize} Everything item<1-> Every thing item<3-4> that has item<4> beginning item<2-5> has end. has end. end{itemize}
  • 97. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ GA Slide 1 7 See also highlighting section.
  • 98. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ MOGA Slide 2 7 See also highlighting section.
  • 99. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA Slide 3 7 See also highlighting section.
  • 100. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ Slide 4 7 See also highlighting section.
  • 101. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ I am 5 Slide 5 7 See also highlighting section.
  • 102. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ Slide 6 7 See also highlighting section.
  • 103. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 Slide 7 7 See also highlighting section.
  • 104. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Slide 8 7 See also highlighting section.
  • 105. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 Slide 9 7 See also highlighting section.
  • 106. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 alt<n> {at n}{not at n} for two alternatives. (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11 Slide 10 7 See also highlighting section.
  • 107. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 alt<n> {at n}{not at n} for two alternatives. (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am 11 Slide 11 7 See also highlighting section.
  • 108. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 alt<n> {at n}{not at n} for two alternatives. (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11 Slide 12 7 See also highlighting section.
  • 109. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 alt<n> {at n}{not at n} for two alternatives. (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11 temporal<n> {before}{at n}{after} for three alternatives.7 (Ex) temporal<14> {I am 13}{I am 14}{I am 15} ⇒ I am 13 Slide 13 7 See also highlighting section.
  • 110. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 alt<n> {at n}{not at n} for two alternatives. (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11 temporal<n> {before}{at n}{after} for three alternatives.7 (Ex) temporal<14> {I am 13}{I am 14}{I am 15} ⇒ I am 14 Slide 14 7 See also highlighting section.
  • 111. Beamer v3.0 Guide Overlays Replace Replace Successive only<n>{..}. (Ex) only<1>{GA}only<2>{MOGA}only<3>{pMOGA} ⇒ pMOGA uncover<n>{..} shows at given n. (Ex) uncover<5> {I am 5} ⇒ invisible<n>{..} hides at given n. (Ex) invisible<8> {Invisible at 8} ⇒ Invisible at 8 alt<n> {at n}{not at n} for two alternatives. (Ex) alt<11> {I am 11}{I am not 11} ⇒ I am not 11 temporal<n> {before}{at n}{after} for three alternatives.7 (Ex) temporal<14> {I am 13}{I am 14}{I am 15} ⇒ I am 15 Slide 15 7 See also highlighting section.
  • 112. Beamer v3.0 Guide Overlays More Replace More Replaces In case of subtle differences in the heights of replacements, overlayarea and overprint environments can be used.
  • 113. Beamer v3.0 Guide Overlays More Replace More Replaces In case of subtle differences in the heights of replacements, overlayarea and overprint environments can be used. only<n> in overlayarea environment: The development of pMSGA is based on NSGA-II and PGAPack.
  • 114. Beamer v3.0 Guide Overlays More Replace More Replaces In case of subtle differences in the heights of replacements, overlayarea and overprint environments can be used. only<n> in overlayarea environment: The main difference is sharing again and new density function.
  • 115. Beamer v3.0 Guide Overlays More Replace More Replaces In case of subtle differences in the heights of replacements, overlayarea and overprint environments can be used. only<n> in overlayarea environment: The main difference is sharing again and new density function. onslide<n> in overprint environment: This is a first line. This is a second, long line.
  • 116. Beamer v3.0 Guide Overlays More Replace More Replaces In case of subtle differences in the heights of replacements, overlayarea and overprint environments can be used. only<n> in overlayarea environment: The main difference is sharing again and new density function. onslide<n> in overprint environment: The previous two lines are replaced by this one.
  • 117. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} item <+-| alert@+> Every thing item <+-| alert@+> that has item <+-| alert@+> beginning item <+-| alert@+> has end. end{itemize}
  • 118. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing item <+-| alert@+> that has item <+-| alert@+> beginning item <+-| alert@+> has end. end{itemize}
  • 119. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing that has item <+-| alert@+> that has item <+-| alert@+> beginning item <+-| alert@+> has end. end{itemize}
  • 120. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing that has item <+-| alert@+> that has item <+-| alert@+> beginning beginning item <+-| alert@+> has end. end{itemize}
  • 121. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing that has item <+-| alert@+> that has item <+-| alert@+> beginning beginning item <+-| alert@+> has end. has end. end{itemize}
  • 122. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing that has item <+-| alert@+> that has item <+-| alert@+> beginning beginning item <+-| alert@+> has end. has end. end{itemize}
  • 123. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing that has item <+-| alert@+> that has item <+-| alert@+> beginning beginning item <+-| alert@+> has end. has end. end{itemize} You can also use begin{itemize}[<+-|alert@+>] instead of individual ’item <+-| alert@+>’.
  • 124. Beamer v3.0 Guide Overlays Simple Highlighting Simple Highlighting item <+-| alert@+> for automatic highlighting. begin{itemize} Everything item <+-| alert@+> Every thing that has item <+-| alert@+> that has item <+-| alert@+> beginning beginning item <+-| alert@+> has end. has end. end{itemize} You can also use begin{itemize}[<+-|alert@+>] instead of individual ’item <+-| alert@+>’. You can also use structure instead of alert.
  • 125. Beamer v3.0 Guide Overlays Alert Alert for Highlighting item<n->alert<n>{stuff} is better than the previous automatic one. begin{itemize} item<2->alert<2> Every thing item<2->alert<3> that has item<2->alert<4> beginning item<2->alert<5> has end. end{itemize}
  • 126. Beamer v3.0 Guide Overlays Alert Alert for Highlighting item<n->alert<n>{stuff} is better than the previous automatic one. begin{itemize} Everything item<2->alert<2> Every thing that has item<2->alert<3> that has item<2->alert<4> beginning beginning item<2->alert<5> has end. has end. end{itemize}
  • 127. Beamer v3.0 Guide Overlays Alert Alert for Highlighting item<n->alert<n>{stuff} is better than the previous automatic one. begin{itemize} Everything item<2->alert<2> Every thing that has item<2->alert<3> that has item<2->alert<4> beginning beginning item<2->alert<5> has end. has end. end{itemize}
  • 128. Beamer v3.0 Guide Overlays Alert Alert for Highlighting item<n->alert<n>{stuff} is better than the previous automatic one. begin{itemize} Everything item<2->alert<2> Every thing that has item<2->alert<3> that has item<2->alert<4> beginning beginning item<2->alert<5> has end. has end. end{itemize}
  • 129. Beamer v3.0 Guide Overlays Alert Alert for Highlighting item<n->alert<n>{stuff} is better than the previous automatic one. begin{itemize} Everything item<2->alert<2> Every thing that has item<2->alert<3> that has item<2->alert<4> beginning beginning item<2->alert<5> has end. has end. end{itemize}
  • 130. Beamer v3.0 Guide Overlays Alert Alert for Highlighting item<n->alert<n>{stuff} is better than the previous automatic one. begin{itemize} Everything item<2->alert<2> Every thing that has item<2->alert<3> that has item<2->alert<4> beginning beginning item<2->alert<5> has end. has end. end{itemize} Note that item<2->alert<2> is same to item<2-| alert@2> .
  • 131. Beamer v3.0 Guide Overlays Alternative Alternative for Highlighting alt<n>{color{col1}..}{color{col2}..} for active/inactive highlighting
  • 132. Beamer v3.0 Guide Overlays Alternative Alternative for Highlighting alt<n>{color{col1}..}{color{col2}..} for active/inactive highlighting Example: Everything that has beginning has end.
  • 133. Beamer v3.0 Guide Overlays Alternative Alternative for Highlighting alt<n>{color{col1}..}{color{col2}..} for active/inactive highlighting Example: Everything that has beginning has end.
  • 134. Beamer v3.0 Guide Overlays Alternative Alternative for Highlighting alt<n>{color{col1}..}{color{col2}..} for active/inactive highlighting Example: Everything that has beginning has end.
  • 135. Beamer v3.0 Guide Overlays Alternative Alternative for Highlighting alt<n>{color{col1}..}{color{col2}..} for active/inactive highlighting Example: Everything that has beginning has end.
  • 136. Beamer v3.0 Guide Overlays Alternative Alternative for Highlighting alt<n>{color{col1}..}{color{col2}..} for active/inactive highlighting Example: Everything that has beginning has end. Source code: begin{itemize} item<2-> alt<2>{color{blue} Everything}{color{gray} Everything} item<2-> alt<3>{color{blue} that has}{color{gray} that has} item<2-> alt<4>{color{blue} beginning}{color{gray} beginning} item<2-> alt<5>{color{blue} has end.}{color{gray} has end.} end{itemize}
  • 137. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting
  • 138. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting Ready? Everything that has beginning has end.
  • 139. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting Ready? Everything that has beginning has end.
  • 140. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting Ready? Everything that has beginning has end.
  • 141. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting Ready? Everything that has beginning has end.
  • 142. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting Ready? Everything that has beginning has end.
  • 143. Beamer v3.0 Guide Overlays Temporal Temporal for Highlighting temporal<n>{before}{on}{after} for incremental highlighting Ready? Everything that has beginning has end. Source code: defhilite<#1>{% temporal<#1>{color{gray}}{color{blue}}% {color{blue!25}}} ... begin{itemize} hilite<3> item Everything hilite<4> item that has hilite<5> item beginning hilite<6> item has end. end{itemize}
  • 144. Beamer v3.0 Guide Overlays Other Highlightings Other Highlightings textbf, textit, textsl, textrm, textsf, and color also understand overlays.
  • 145. Beamer v3.0 Guide Overlays Other Highlightings Other Highlightings textbf, textit, textsl, textrm, textsf, and color also understand overlays. Example
  • 146. Beamer v3.0 Guide Overlays Other Highlightings Other Highlightings textbf, textit, textsl, textrm, textsf, and color also understand overlays. Example Everything (color< 3- 4> {olive}{Everything})
  • 147. Beamer v3.0 Guide Overlays Other Highlightings Other Highlightings textbf, textit, textsl, textrm, textsf, and color also understand overlays. Example Everything (color< 3- 4> {olive}{Everything}) that has
  • 148. Beamer v3.0 Guide Overlays Other Highlightings Other Highlightings textbf, textit, textsl, textrm, textsf, and color also understand overlays. Example Everything (color< 3- 4> {olive}{Everything}) that has beginning (color< 5> [rgb]{.9, .5, .5}beginning)
  • 149. Beamer v3.0 Guide Overlays Other Highlightings Other Highlightings textbf, textit, textsl, textrm, textsf, and color also understand overlays. Example Everything (color< 3- 4> {olive}{Everything}) that has beginning (color< 5> [rgb]{.9, .5, .5}beginning) has end.
  • 150. Beamer v3.0 Guide Animation Animations Animation For dynamic presentation Beamer supports transition, overlay, and animation. Animation depends on your imagination and LTEX skill. A
  • 151. Beamer v3.0 Guide Animation Animations Animation For dynamic presentation Beamer supports transition, overlay, and animation. Animation depends on your imagination and LTEX skill. A Supported animation types Animate + Overlay Animatevalue Timed overlays (auto advancing)
  • 152. Beamer v3.0 Guide Animation Animations Animation For dynamic presentation Beamer supports transition, overlay, and animation. Animation depends on your imagination and LTEX skill. A Supported animation types Animate + Overlay Animatevalue Timed overlays (auto advancing) Use with caution as animation needs lots of slides
  • 153. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing 8 Remember that n can be n1-n2, n1-, or etc.
  • 154. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? 8 Remember that n can be n1-n2, n1-, or etc.
  • 155. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? Everything 8 Remember that n can be n1-n2, n1-, or etc.
  • 156. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? Everything that has 8 Remember that n can be n1-n2, n1-, or etc.
  • 157. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? Everything that has beginning 8 Remember that n can be n1-n2, n1-, or etc.
  • 158. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? Everything that has beginning has end. 8 Remember that n can be n1-n2, n1-, or etc.
  • 159. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? Everything that has beginning has end. 8 Remember that n can be n1-n2, n1-, or etc.
  • 160. Beamer v3.0 Guide Animation Animate + Overlay Animate + Overlay animate<n> 8 for automatic stepwise viewing Ready? Everything that has beginning has end. Source code: frame{animate<3-6>frametitle{Animate + Overlay}% ... begin{itemize}[<+->] item Everything item that has item beginning item has end. end{itemize} 8 Remember that n can be n1-n2, n1-, or etc.
  • 161. Beamer v3.0 Guide Animation Animatevalue Animatevalue animate<n> to animate ‘n’ slides animatevalue<n>{name}{start}{end} for specifying animation effects name: counter or dimension start and end values of the value
  • 162. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 163. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 164. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 165. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 166. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 167. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 168. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 169. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 170. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 171. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 172. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 173. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 174. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 175. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 176. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 177. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 178. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right!
  • 179. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! t!
  • 180. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! left!
  • 181. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! om left!
  • 182. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! from left!
  • 183. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! g in from left!
  • 184. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! ing in from left!
  • 185. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 186. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 187. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 188. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 189. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 190. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 191. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 192. Beamer v3.0 Guide Animation Flying Animation Flying Animation animate and animatevalue are used. This animation consumes 31 pages! Ready to explore? Flying in from right! Flying in from left!
  • 193. Beamer v3.0 Guide Animation Flying Animation - Source Flying Animation - Source newcountopaqueness newdimenoffset frame{frametitle{Flying Animation}% animate<2-15,17-30> % Actual animation values. Try <1-31> begin{itemize} item[] animatevalue<1-15>{opaqueness}{0}{100}% animatevalue<1-15>{offset}{6cm}{0cm}% begin{colormixin}{theopaqueness!averagebackgroundcolor} hspace{offset} Flying in from {color{olive} right}! end{colormixin} item[] animatevalue<17-31>{opaqueness}{0}{100} % Starts at 17, not 16, to give animatevalue<17-31>{offset}{-5cm}{0cm} % one pause! begin{colormixin}{theopaqueness!averagebackgroundcolor} hspace{offset} Flying in from {color{olive} left}! end{colormixin} end{itemize}
  • 194. Beamer v3.0 Guide Animation Timed Overlays Timed Overlays Adobe Reader supports timed overlays, often called auto advancing. Two approaches hypersetup{pdfpageduration=time} from hyperref package + overlay macros transduration<n>{time} from beamer package + overlay macros See beamer pstricks.pdf to see a fancy example. Try to do the same thing using PGF. Easy or not?
  • 195. Beamer v3.0 Guide Beamer Themes Presentation Themes Presentation Themes usetheme[option]{name}: Named to beamertheme<name>.sty. Old themes: bars, boxes, classic, default, lined, plain, shadow, sidebar, sidebardark, sidebardarktab, sidebartab, split, tree, treebars New themes (v3.0) W/o navigation bar: default, boxes, Bergen, Madrid, Pittsburgh, Rochester With a tree-like navigation bar: Antibes, JuanLesPins, Montpellier. With a TOC sidebar: Berkeley, PaloAlto, Goettingen, Marburg, Hannover With a mini frame navigation: Berlin, Ilmenau, Dresden, Darmstadt, Frankfurt, Singapore, Szeged With section and subsection titles: Copenhagen, Luebeck, Malmoe, Warsaw Return
  • 196. Beamer v3.0 Guide Beamer Themes Color Themes Color Themes usecolortheme[option]{name}: Named to beamercolortheme<name>.sty. Default and special-purpose themes: default, structure (e.g., usecolortheme[named=SeaGreen]{structure}. Complete color themes: albatross, beetle, crane, dove, fly, seagull Inner color themes: lily, orchid Outer color themes: whale, seahorse Return
  • 197. Beamer v3.0 Guide Beamer Themes Font Themes Font Themes usecolortheme[option]{name}: Named to beamerfonttheme<name>.sty. New themes (v3.0): default, professionalfonts, serif, structurebold, structureitalicserif, structuresmallcapsserif Return
  • 198. Beamer v3.0 Guide Misc Features Hyperlinks and Buttons Hyperlinks and Buttons Beamer provides additional options for hyperlinks and buttons. hyperlink{targetname}{beamergotobutton{text}} to create link. hypertarget{targetname}{text} to create target. Some useful buttons are beamerbutton, beamergotobutton, and beamerreturnbutton. To go to the last slide, click here .
  • 199. Beamer v3.0 Guide Misc Features Notes Notes To add notes to PDF screen, documentclass[notes]{beamer}. To make only notes, documentclass[notesonly]{beamer}.
  • 200. Beamer v3.0 Guide Misc Features Notes Notes To add notes to PDF screen, documentclass[notes]{beamer}. To make only notes, documentclass[notesonly]{beamer}. Notes addition by adding note[options]{...} after frame{...}.
  • 201. Beamer v3.0 Guide Misc Features Notes Notes To add notes to PDF screen, documentclass[notes]{beamer}. To make only notes, documentclass[notesonly]{beamer}. Notes addition by adding note[options]{...} after frame{...}. This slide has notes. Want to see them?
  • 202. Beamer v3.0 Guide Notes 2004-10-26 Misc Features To add notes to PDF screen, documentclass[notes]{beamer}. To make only notes, documentclass[notesonly]{beamer}. Notes addition by adding note[options]{...} after frame{...}. Notes This slide has notes. Want to see them? Notes • Can you see me? • Two note options for note are itemize and enumerate. • beamertemplatenoteplain for plain note page!
  • 203. Beamer v3.0 Guide Misc Features Merge for “trans” Output Merge for “trans” Output Beamer screen size = 128mm x 96mm Merge transparency output on letter paper for printing! documentclass{article} % usepackage{pdfpages} begin{document} includepdf[nup=2x2,landscape,delta=5mm 5mm,% scale=0.95,pages={1-18}]{trans.pdf} end{document} To return, click here .
  • 204. Beamer v3.0 Guide Misc Features Movie Movie Beamer provides multimedia package.9 movie[options]{poster}{file_name} poster: Poster for the movie (empty, text, or image). file name: AVI or MPG. Works with pdflatex and dvips/ps2pdf routes. Some useful options autostart, loop, repeat, palindrome borderwidth, showcontrols, externalviewer Example: clock.avi 9 New in Version 2.2. Can be used independently.
  • 205. Beamer v3.0 Guide Misc Features Sound Sound Beamer provides multimedia package. sound[options]{poster}{file_name} Cannot be used with dvips/ps2pdf route. File types depend on Acrobat Reader versions Some useful options autostart, automute, loop, repeat. inlinesound to embed sound files to PDF. channels (1), samplingrate (44100), bitspersample (16), encoding (µ law) are important! Example: sound[autostart,samplingrate=705000,bitspersample=16, channels=2]{Example}{notify.wav}
  • 206. Beamer v3.0 Guide Misc Features Logo and Footer Footer Design To add logo, logo{stuff} in the preamble. The logo will place in the right bottom corner. How to change it? – See below! To redesign the footer, apply the following code: usefoottemplate{vbox{% tinycolouredline{structure!25}% {color{white}textbf{insertshortauthorhfill% insertshortinstitute}}% tinycolouredline{structure}% {color{white}textbf{insertshorttitle}hfill}% }}
  • 207. Beamer v3.0 Guide Misc Features Emulation Emulations of Other Packages You can use FoilTEX, (HA)Prosper, Seminar, or TEXPower slides within Beamer. Not perfect, but you can easily import your slides written from the above four classes. Prosper example: usepackage{beamerprosper} % Required ... overlays{8}{% begin{slide}{Prosper Emulation Example} begin{itemize} item Backward writing is easy and simple: fromSlide{8}{{color{green} P}}% fromSlide{7}{{color{blue} R}}% fromSlide{6}{{color{magenta} O}}% fromSlide{5}{{color{cyan} S}}% fromSlide{4}{{color{yellow} P}}% fromSlide{3}{{color{olive} E}}% fromSlide{2}{{{color{red} R}}} end{itemize} end{slide} }%
  • 208. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple:
  • 209. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: R
  • 210. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: ER
  • 211. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: PER
  • 212. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: SPER
  • 213. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: OSPER
  • 214. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: ROSPER
  • 215. Beamer v3.0 Guide Misc Features Prosper Result Prosper Result This slide is written with Prosper syntax! Backward writing is easy and simple: PROSPER
  • 216. Beamer v3.0 Guide Misc Features Hangul Hangul If you installed HLTEX, load usepackage{hfont}. A textgs{...} ⇒ Qï ~ £s ¶¨ e  ׬ Š† 7 4 Ž Click here to return. Note: Hangul bookmarks and Hangul search in PDF are only supported by dvipdfm(x). But Beamer does not support dvipdfm(x). Beamer option [cjk] is supported. usepackage[utf8]{inputenc} is supported.
  • 217. Beamer v3.0 Guide Misc Features Other Macros Other Macros To remove navigation symbols, usenavigationsymbolstemplate{}.
  • 218. Beamer v3.0 Guide Last Slide Last Slide This page is directed from the button you clicked. To go back, click here .
  • 219. Beamer v3.0 Guide Reference Reference Ki-Joo Kim, Ki-Joo’s LTEX Documents A (http://www.geocities.com/kijoo2000/). Michael Wiedmann, Screen Presentation Tools (http: //www.miwie.org/presentations/presentations.html).