Building a Presentation

14 animations, sounds, and slide transitions, 14.1 animations ¶, 14.1.1 including external animation files ¶.

If you have created an animation using some external program (like a renderer), you can use the capabilities of the presentation program (like the Acrobat Reader) to show the animation. Unfortunately, currently there is no portable way of doing this and even the Acrobat Reader does not support this feature on all platforms.

To include an animation in a presentation, you can use, for example, the package multimedia.sty which is part of the beamer package. You have to include this package explicitly. Despite being distributed as part of the beamer distribution, this package is perfectly self-sufficient and can be used independently of beamer .

\usepackage{ multimedia }

A stand-alone package that implements several commands for including external animation and sound files in a pdf document. The package can be used together with both dvips plus ps2pdf and pdflatex , though the special sound support is available only in pdflatex .

When including this package, you must also include the hyperref package. The multimedia is one of the few packages that needs to be loaded after hyperref . Since beamer includes hyperref automatically, you need not worry about this when creating a presentation using beamer .

For including an animation in a pdf file, you can use the command \movie , which is explained below. Depending on the used options, this command will either setup the pdf file such that the viewer application (like the Acrobat Reader) itself will try to play the movie or that an external program will be called. The latter approach, though much less flexible, must be taken if the viewer application is unable to display the movie itself.

\movie [ ⟨ options ⟩ ] { ⟨ poster text ⟩ }{ ⟨ movie filename ⟩ }

This command will insert the movie with the filename ⟨ movie filename ⟩ into the pdf file. The movie file must reside at some place where the viewer application will be able to find it, which is typically only the directory in which the final pdf file resides. The movie file will not be embedded into the pdf file in the sense that the actual movie data is part of the main.pdf file. The movie file must hence be copied and passed along with the pdf file. (Nevertheless, one often says that the movie is “embedded” in the document, but that just means that one can click on the movie when viewing the document and the movie will start to play.)

The movie will use a rectangular area whose size is determined either by the width= and height= options or by the size of the ⟨ poster text ⟩ . The ⟨ poster text ⟩ can be any T e X text; for example, it might be a \pgfuseimage command or an \includegraphics command or a pgfpicture environment or just plain text. The ⟨ poster text ⟩ is typeset in a box, the box is inserted into the normal text, and the movie rectangle is put exactly over this box. Thus, if the ⟨ poster text ⟩ is an image from the movie, this image will be shown until the movie is started, when it will be exactly replaced by the movie itself. However, there is also a different, sometimes better, way of creating a poster image, namely by using the poster option as explained later on.

The aspect ratio of the movie will not be corrected automatically if the dimension of the ⟨ poster text ⟩ box does not have the same aspect ratio. Most movies have an aspect ratio of 4:3 or 16:9.

Despite the name, a movie may consist only of sound with no images. In this case, the ⟨ poster text ⟩ might be a symbol representing the sound. There is also a different, dedicated command for including sounds in a pdf file, see the \sound command in Section  14.2 .

Unless further options are given, the movie will start only when the user clicks on it. Whether the viewer application can actually display the movie depends on the application and the version. For example, the Acrobat Reader up to version 5 does not seem to be able to display any movies or sounds on Linux. On the other hand, the Acrobat Reader Version 6 on MacOS is able to display anything that QuickTime can display, which is just about everything. Embedding movies in a pdf document is provided for by the pdf standard and is not a peculiarity of the Acrobat Reader. In particular, one might expect other viewers like xpdf and poppler -based viewers (Okular, Evince) to support embedded movies in the future.

Example: \movie{\pgfuseimage{myposterimage}}{mymovie.avi}

Example: \movie[width=3cm,height=2cm,poster]{}{mymovie.mpg}

If your viewer application is not able to render your movie, but some external application is, you must use the externalviewer option. This will ask the viewer application to launch an application for showing the movie instead of displaying it itself. Since this application is started in a new window, this is not nearly as nice as having the movie displayed directly by the viewer (unless you use evil trickery to suppress the frame of the viewer application). Which application is chosen is left to the discretion of the viewer application, which tries to make its choice according to the extension of the ⟨ movie filename ⟩ and according to some mapping table for mapping extensions to viewer applications. How this mapping table can be modified depends on the viewer application, please see the release notes of your viewer.

The following ⟨ options ⟩ may be given:

• autostart . Causes the movie to start playing immediately when the page is shown. At most one movie can be started in this way. The viewer application will typically be able to show at most one movie at the same time anyway. When the page is no longer shown, the movie immediately stops. This can be a problem if you use the \movie command to include a sound that should be played on after the page has been closed. In this case, the \sound command must be used.

• borderwidth= ⟨ T e X dimension ⟩ . Causes a border of thickness ⟨ T e X dimension ⟩ to be drawn around the movie. Some versions of the Acrobat Reader seem to have a bug and do not display this border if is smaller than 0.5bp (about 0.51pt).

• depth= ⟨ T e X dimension ⟩ . Overrides the depth of the ⟨ poster text ⟩ box and sets it to the given dimension.

• duration= ⟨ time ⟩ s . Specifies in seconds how long the movie should be shown. The ⟨ time ⟩ may be a fractional value and must be followed by the letter s . For example, duration=1.5s will show the movie for one and a half seconds. In conjunction with the start option, you can “cut out” a part of a movie for display.

• externalviewer . As explained above, this causes an external application to be launched for displaying the movie in a separate window. Most options, like duration or loop , have no effect since they are not passed along to the viewer application.

• height= ⟨ T e X dimension ⟩ . Overrides the height of the ⟨ poster text ⟩ box and sets it to the given dimension.

• label= ⟨ movie label ⟩ . Assigns a label to the movie such that it can later be referenced by the command \hyperlinkmovie , which can be used to stop the movie or to show a different part of it. The ⟨ movie label ⟩ is not a normal label. It should not be too fancy, since it is inserted literally into the pdf code. In particular, it should not contain closing parentheses.

• loop . Causes the movie to start again when the end has been reached. Normally, the movie just stops at the end.

• once . Causes the movie to just stop at the end. This is the default.

• open . Causes the player to stay open when the movie has finished.

• palindrome . Causes the movie to start playing backwards when the end has been reached, and to start playing forward once more when the beginning is reached, and so on.

• poster . Asks the viewer application to show the first image of the movie when the movie is not playing. Normally, nothing is shown when the movie is not playing (and thus the box containing the ⟨ poster text ⟩ is shown). For a movie that does not have any images (but sound) or for movies with an uninformative first image this option is not so useful.

• repeat is the same as loop .

• showcontrols= ⟨ true or false ⟩ . Causes a control bar to be displayed below the movie while it is playing. Instead of showcontrols=true you can also just say showcontrols . By default, no control bar is shown.

• start= ⟨ time ⟩ s . Causes the first ⟨ time ⟩ seconds of the movie to be skipped. For example, start=10s,duration=5s will show seconds 10 to 15 of the movie, when you play the movie.

• width= ⟨ T e X dimension ⟩ works like the height option, only for the width of the poster box.

Example: The following example creates a “background sound” for the slide.

Example: A movie with two extra buttons for showing different parts of the movie.

A movie can serve as the destination of a special kind of hyperlink, namely a hyperlink introduced using the following command:

\hyperlinkmovie [ ⟨ options ⟩ ] { ⟨ movie label ⟩ }{ ⟨ text ⟩ }

Causes the ⟨ text ⟩ to become a movie hyperlink. When you click on the ⟨ text ⟩ , the movie with the label ⟨ movie label ⟩ will start to play (or stop or pause or resume, depending on the ⟨ options ⟩ ). The movie must be on the same page as the hyperlink.

The following ⟨ options ⟩ may be given, many of which are the same as for the \movie command; if a different option is given for the link than for the movie itself, the option for the link takes precedence:

• duration= ⟨ time ⟩ s . As for \movie , this causes the movie to be played only for the given number of seconds.

• loop and repeat . As for \movie , this causes the movie to loop.

• once . As for \movie , this causes the movie to played only once.

• palindrome . As for \movie , this causes the movie to be played forth and back.

• pause . Causes the playback of the movie to be paused, if the movie was currently playing. If not, nothing happens.

• play . Causes the movie to be played from whatever start position is specified. If the movie is already playing, it will be stopped and restarted at the starting position. This is the default.

• resume . Resumes playback of the movie, if it has previously been paused. If has not been paused, but not started or is already playing, nothing happens.

• showcontrols= ⟨ true or false ⟩ . As for \movie , this causes a control bar to be shown or not shown during playback.

• start= ⟨ time ⟩ s . As for \movie , this causes the given number of seconds to be skipped at the beginning of the movie if play is used to start the movie.

• stop . Causes the playback of the movie to be stopped.

14.1.2 Animations Created by Showing Slides in Rapid Succession ¶

You can create an animation in a portable way by using the overlay commands of the beamer package to create a series of slides that, when shown in rapid succession, present an animation. This is a flexible approach, but such animations will typically be rather static since it will take some time to advance from one slide to the next. This approach is mostly useful for animations where you want to explain each “picture” of the animation. When you advance slides “by hand,” that is, by pressing a forward button, it typically takes at least a second for the next slide to show.

More “lively” animations can be created by relying on a capability of the viewer program. Some programs support showing slides only for a certain number of seconds during a presentation (for the Acrobat Reader this works only in full-screen mode). By setting the number of seconds to zero, you can create a rapid succession of slides.

To facilitate the creation of animations using this feature, the following commands can be used: \animate and \animatevalue .

\animate < ⟨ overlay specification ⟩ >

The slides specified by ⟨ overlay specification ⟩ will be shown as quickly as possible.

This command is ignored in article mode.

\animatevalue < ⟨ start slide ⟩ - ⟨ end slide ⟩ > { ⟨ name ⟩ }{ ⟨ start value ⟩ }{ ⟨ end value ⟩ }

The ⟨ name ⟩ must be the name of a counter or a dimension. It will be varied between two values. For the slides in the specified range, the counter or dimension is set to an interpolated value that depends on the current slide number. On slides before the ⟨ start slide ⟩ , the counter or dimension is set to ⟨ start value ⟩ ; on the slides after the ⟨ end slide ⟩ it is set to ⟨ end value ⟩ .

If your animation “graphics” reside in individual external graphic files, you might also consider using the \multiinclude command, which is explained in Section  14.1.3 , together with \animate . For example, you might create an animation like this, assuming you have created graphic files named animation.1 through to animation.10 :

14.1.3 Including External Animations Residing in Multiple Image Files ¶

Some animations reside in external files in the following way: For each stage of the animation there is an image file containing an image for this stage. You can include such a series of images conveniently by using the style mpmulti.sty from the ppower4 package. This style, written by Klaus Guntermann, introduces a command called \multiinclude that takes the base name of a graphic file like mygraphic and will then search for files called mygraphic.0 , mygraphic.1 , and so on, till no more files are found. It will then include these graphics files using the \includegraphics command, but will put these graphics “on top of each other.” Furthermore, and this is the important part, it inserts a \pause command after each graphic. This command is defined in the ppower4 package and has the same effect as the \pause command of beamer . For this reason, both ppower4 and also beamer will first display the basic graphic and will then additionally show the next graphic on each slide.

If you try to use mpmulti.sty directly, you will run into the problem that it includes a file called pause.sty , which is part of the ppower4 package.

You might also consider using the style xmpmulti.sty that comes with beamer . This file is mainly identical to mpmulti , except for two differences: First, it does not include pause.sty , a style that conceptually clashes with beamer , although beamer contains a workaround that sidesteps the problem. Second, it extends the \multiinclude command by allowing a special default overlay specification to be given. The effect of this is explained below.

\usepackage{ xmpmulti }

Defines the command \multiinclude . The code of this package is due to Klaus Guntermann with some additions of mine. It can be used together with beamer and with ppower4, i. e., it can be used as a replacement for mpmulti if the pause package is also included in a ppower4-presentation.

\multiinclude [< ⟨ default overlay specification ⟩ >] [ ⟨ options ⟩ ] { ⟨ base file name ⟩ }

Except for the possibility of specifying a ⟨ default overlay specification ⟩ , this command is identical to the \multiinclude command from the ppower4 package.

If no overlay specification is given, the command will search for files called ⟨ base file name ⟩ . ⟨ number ⟩ for increasing numbers ⟨ number ⟩ , starting with zero. As long as it finds these files, it issues an \includegraphics command on them. The files following the first one are put “on top” of the first one. Between any two invocations of \includegraphics , a \pause command is inserted. You can modify this behavior in different ways by given suitable ⟨ options ⟩ , see below.

Example: Assume that MetaPost has created files called gra.0 , gra.1 , and gra.2 . You can then create frame consisting of three slides that incrementally show the graphic as follows:

The effect of providing a ⟨ default overlay specification ⟩ is the following: First, no \pause command is inserted between graphics. Instead, each graphic is surrounded by an actionenv environment with the overlay specification set to ⟨ default overlay specification ⟩ .

Example: You can create the same effect as in the previous example using \multiinclude[<+->]{gra} .

Example: For a more interesting usage of the ⟨ default overlay specification ⟩ , consider the following usage:

This will always paint the most recently added part of the graphic in red (assuming you do not use special colors in the graphic itself).

Example: In order to have each graphic completely replace the previous one, you could use \multiinclude[<+>]{gra} .

The following ⟨ options ⟩ may be given (these are the same as for the original command from the ppower4 package):

• pause= ⟨ command ⟩ replaces the default pausing command \pause by ⟨ command ⟩ . If a ⟨ default overlay specification ⟩ is given, the default pausing command is empty; otherwise it is \pause . Note that commands like \pauselevel are not available in \beamer .

• graphics= ⟨ options ⟩ passes the ⟨ options ⟩ to the \includegraphics command.

Example: \multiinclude[graphics={height=5cm}]{gra}

• format= ⟨ extension ⟩ will cause the file names for which we search change from ⟨ base file name ⟩ . ⟨ number ⟩ to ⟨ base file name ⟩ - ⟨ number ⟩ . ⟨ extension ⟩ . Note the change from the dot to a hyphen. This option allows you to include, say, .jpg files.

• start= ⟨ number ⟩ specifies the start ⟨ number ⟩ . The default is zero.

• end= ⟨ number ⟩ specifies the end ⟨ number ⟩ . The default is infinity.

Note that, if you do not use the format= option, the \includegraphics command will be somewhat at a loss in which format your graphic file actually is. After all, it ends with the cryptic “format suffix” .0 or .1 . You can tell \includegraphics that any file having a suffix it knows nothing about is actually in format, say, .mps , using the following command:

14.2 Sounds ¶

You can include sounds in a presentation. Such sound can be played when you open a slide or when a certain button is clicked. The commands for including sounds are defined in the package multimedia , which is introduced in Section  14.1.1 .

As was already pointed out in Section  14.1.1 , a sound can be included in a pdf presentation by treating it as a movie and using the \movie command. While this is perfectly sufficient in most cases, there are two cases where this approach is not satisfactory:

1. When a page is closed, any playing movie is immediately stopped. Thus, you cannot use the \movie command to create sounds that persist for a longer time.

2. You cannot play two movies at the same time.

The pdf specification introduces special sound objects, which are treated quite differently from movie objects. You can create a sound object using the command \sound , which is somewhat similar to \movie . There also exists a \hyperlinksound command, which is similar to \hyperlinkmovie . While it is conceptually better to use \sound for sounds, there are a number of things to consider before using it:

• Several sounds can be played at the same time. In particular, it is possible to play a general sound in parallel to a (hopefully silent) movie.

• A sound playback can persist after the current page is closed (though it need not).

• The data of a sound file can be completely embedded in a pdf file, obliterating the need to “carry around” other files.

• The sound objects do not work together with dvips and ps2pdf . They only work with pdflatex .

• There is much less control over what part of a sound should be played. In particular, no control bar is shown and you can specify neither the start time nor the duration.

• A bug in some versions of the Acrobat Reader makes it necessary to provide very exact details on the encoding of the sound file. You have to provide the sampling rate, the number of channels (mono or stereo), the number of bits per sample, and the sample encoding method (raw, signed, Alaw or law). If you do not know this data or provide it incorrectly, the sound will be played incorrectly.

• It seems that you can only include uncompressed sound data, which can easily become huge. This is not required by the specification, but some versions of Acrobat Reader are unable to play any compressed data. Data formats that do work are .aif and .au .

\sound [ ⟨ options ⟩ ] { ⟨ sound poster text ⟩ }{ ⟨ sound filename ⟩ }

This command will insert the sound with the filename ⟨ sound filename ⟩ into the pdf file. As for \movie , the file must be accessible when the sound is to be played. Unlike \movie , you can however use the option inlinesound to actually embed the sound data in the pdf file.

Also as for a movie, the ⟨ sound poster text ⟩ will be be put in a box that, when clicked on, will start playing the movie. However, you might also leave this box empty and only use the autostart option. Once playback of a sound has started, it can only be stopped by starting the playback of a different sound or by use of the \hyperlinkmute command.

The supported sound formats depend on the viewer application. Some versions of Acrobat Reader support .aif and .au . Sometimes you also need to specify information like the sampling rate, even though this information could be extracted from the sound file and even though the pdf standard specifies that the viewer application should do so. In this regard, some versions of Acrobat Reader seem to be non-standard-conforming.

This command only works together with pdflatex . If you use dvips , the poster is still shown, but clicking it has no effect and no sound is embedded in any way.

Example: \sound[autostart,samplingrate=22050]{}{applause.au}

• autostart . Causes the sound to start playing immediately when the page is shown.

• automute . Causes all sounds to be muted when the current page is left.

• bitspersample= ⟨ 8 or 16 ⟩ . Specifies the number of bits per sample in the sound file. If this number is 16, this option need not be specified.

• channels= ⟨ 1 or 2 ⟩ . Specifies whether the sound is mono or stereo. If the sound is mono, this option need not be specified.

• depth= ⟨ T e X dimension ⟩ . Overrides the depth of the ⟨ sound poster text ⟩ box and sets it to the given dimension.

• encoding= ⟨ method ⟩ . Specifies the encoding method, which may be Raw , Signed , muLaw , or ALaw . If the method is muLaw , this option need not be specified.

• externalviewer causes an external application to be launched for playing the sound. Most options, like loop , have no effect since they are not passed along to the external application.

• height= ⟨ T e X dimension ⟩ . Overrides the height of the ⟨ sound poster text ⟩ box and sets it to the given dimension.

• inlinesound causes the sound data to be stored directly in the pdf -file.

• label= ⟨ sound label ⟩ . Assigns a label to the sound such that it can later be referenced by the command \hyperlinksound , which can be used to start a sound. The ⟨ sound label ⟩ is not a normal label.

• loop or repeat . Causes the sound to start again when the end has been reached.

• mixsound= ⟨ true or false ⟩ . If set to true , the sound is played in addition to any sound that is already playing. If set to false all other sounds (though not sound from movies) are stopped before the sound is played. The default is false .

• samplingrate= ⟨ number ⟩ . Specifies the number of samples per second in the sound file. If this number is 44100, this option need not be specified.

Example: The following example creates a “background sound” for the slide, assuming that applause.au is encoded correctly (44100 samples per second, mono, law encoded, 16 bits per sample).

Just like movies, sounds can also serve as destinations of special sound hyperlinks.

\hyperlinksound [ ⟨ options ⟩ ] { ⟨ sound label ⟩ }{ ⟨ text ⟩ }

Causes the ⟨ text ⟩ to become a sound hyperlink. When you click on the ⟨ text ⟩ , the sound with the label ⟨ sound label ⟩ will start to play.

Since there is no direct way of stopping the playback of a sound, the following command is useful:

\hyperlinkmute { ⟨ text ⟩ }

Causes the ⟨ text ⟩ to become a hyperlink that, when clicked, stops the playback of all sounds.

14.3 Slide Transitions ¶

pdf in general, and the Acrobat Reader in particular, offer a standardized way of defining slide transitions . Such a transition is a visual effect that is used to show the slide. For example, instead of just showing the slide immediately, whatever was shown before might slowly “dissolve” and be replaced by the slide’s content.

There are a number of commands that can be used to specify what effect should be used when the current slide is presented. Consider the following example:

The command \transdissolve causes the slide of the second frame to be shown in a “dissolved way.” Note that the dissolving is a property of the second frame, not of the first one. We could have placed the command anywhere on the frame.

The transition commands are overlay-specification-aware. We could collapse the two frames into one frame like this:

This states that on the first slide the young boy should be shown, on the second slide the old man should be shown, and when the second slide is shown, it should be shown in a “dissolved way.”

In the following, the different commands for creating transitional effects are listed. All of them take an optional argument that may contain a list of ⟨ key ⟩ = ⟨ value ⟩ pairs. The following options are possible:

• duration= ⟨ seconds ⟩ . Specifies the number of ⟨ seconds ⟩ the transition effect needs. Default is one second, but often a shorter one (like 0.2 seconds) is more appropriate. Viewer applications, especially Acrobat, may interpret this option in slightly strange ways.

• direction= ⟨ degree ⟩ . For “directed” effects, this option specifies the effect’s direction. Allowed values are 0 , 90 , 180 , 270 , and for the glitter effect also 315 .

All of these commands are ignored in article mode.

\transblindshorizontal < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide as if horizontal blinds were pulled away.

Example: \transblindshorizontal

\transblindsvertical < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide as if vertical blinds were pulled away.

Example: \transblindsvertical<2,3>

\transboxin < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by moving to the center from all four sides.

Example: \transboxin<1>

\transboxout < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by showing more and more of a rectangular area that is centered on the slide center.

Example: \transboxout

\transcover < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by covering the content that was shown before.

Example: \transcover

\transdissolve < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by slowly dissolving what was shown before.

Example: \transdissolve[duration=0.2]

\transfade < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by slowly fading what was shown before.

Example: \transfade

\transfly < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by letting the new content fly in before removing the old slide.

Example: \transfly[direction=180]

\transglitter < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide with a glitter effect that sweeps in the specified direction.

Example: \transglitter<2-3>[direction=90]

\transpush < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by pushing what was shown before off the screen using the new content.

Example: \transpush

\transreplace < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Replace the previous slide directly (default behaviour).

\transsplitverticalin < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by sweeping two vertical lines from the sides inward.

Example: \transsplitverticalin

\transsplitverticalout < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by sweeping two vertical lines from the center outward.

Example: \transsplitverticalout

\transsplithorizontalin < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by sweeping two horizontal lines from the sides inward.

Example: \transsplithorizontalin

\transsplithorizontalout < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by sweeping two horizontal lines from the center outward.

Example: \transsplithorizontalout

\transwipe < ⟨ overlay specification ⟩ > [ ⟨ options ⟩ ]

Show the slide by sweeping a single line in the specified direction, thereby “wiping out” the previous contents.

Example: \transwipe[direction=90]

You can also specify how long a given slide should be shown, using the following overlay-specification-aware command:

\transduration < ⟨ overlay specification ⟩ > { ⟨ number of seconds ⟩ }

In full screen mode, show the slide for ⟨ number of seconds ⟩ . If zero is specified, the slide is shown as short as possible. This can be used to create interesting pseudo-animations.

Example: \transduration<2>{1} Notice that the duration of a slide transition is entire separate from the type of transition which takes place. Most notably, to cancel an existing auto-advance you need to use

Example: \transduration{} possibly with an overlay specification.

Help Center

How to insert videos  .

To insert a video…

  • Copy the URL of your selected video. Beamer is compatible with YouTube , Vimeo , Loom , Wistia , Vidyard , Instagram and more than a 1000 other apps.

Beamer add media button

  • After you’re finished you can save as a draft or save and publish right away.

How to remove an inserted video?

To remove an inserted video just press the delete key on your keyboard while selecting the video. You can also click on the video and then click on the icon ( clear ) that will appear at the top right corner of the video.

Was this helpful?

Help us help you more

Your Data Security and Privacy is our Priority.

At Beamer, we care about our customers’ data and this is how we protect it.

vpn_key Data Ownership

Your account and data belongs to you and will not be sold in any case. We can delete your account and data upon your request. Learn more chevron_right

lock Encryption

Beamer data is encrypted in transit (advanced TLS protocols and 2,048-bit keys or better) and at rest (using AES 256 encryption with integrity).

Customer data is always backed up and uptime is over 99.9%.

workspace_premium GDPR

Beamer is GDPR Compliant and has the Data Processing Agreements in place. Learn more chevron_right

bug_report Penetration testing

Third party network, application and physical security tests are conducted regularly. Learn more chevron_right

IMAGES

  1. Presentation Slides with Beamer

    video in beamer presentation

  2. Presentation with Beamer in LyX *Part-1*

    video in beamer presentation

  3. Using Markdown to Make Beautiful LaTeX Beamer Presentations

    video in beamer presentation

  4. How to use the Correct Aspect Ratio in Beamer Presentation for External HD Displays

    video in beamer presentation

  5. LaTeX Tutorial 11: Beamer Slide Presentation

    video in beamer presentation

  6. Adding a Progress Bar in Beamer Presentation Slides (Latex Advanced Tutorial-18)

    video in beamer presentation

VIDEO

  1. Beamer

  2. Vidéo de présentation Cargo Beamer

  3. lyx beamer part 1

  4. Latex Beamer Presentation #academicwriting #university #studium #informatika #programovanie #latex

  5. beamer presentation

  6. Lecture

COMMENTS

  1. beamer

    217. I'm aware that it's possible to embed some kinds of videos and animations in LaTeX files (using the beamer or prosper classes) but I couldn't locate good documentation on this. My web searches returned a list of scattered forum questions and answers. Could anybody give a link to some help or documentation page that systematically deals ...

  2. How to Add a Video to Your Beamer Presentation

    If you're a LaTeX user who wants to add a video to your Beamer presentation, you've come to the right place. In this tutorial, we'll show you how to add a vi...

  3. How to embed video and animation in LaTeX and LaTeX beamer step by step

    In addition to Karl's students answers (Can we use media9 to show a video on a PDF but the video is not embedded to the PDF?) and this other question: gif image in beamer presentation I can suggest what I did for my thesis presentation: In the preamble of the beamer: %Graphics and Videos \usepackage{graphicx} %The mode "LaTeX => PDF" allows the following formats: .jpg .png .pdf .mps ...

  4. media9

    multimedia package. If we want to stay in the beamer universe, the package multimedia comes as part of beamer (nevertheless you have to explicitly load it with \usepackage{multimedia}).. information can be found in the beameruserguide, section 14.1.1 Including External Animation Files. usage:. The basic command to include a video/audio file is \movie[ options ]{ poster text }{ movie filename ...

  5. Including Animations Into LaTeX Beamer Presentations

    text. videos or GIFs. To start, we'll use the animate package in LaTeX together with the \animategraphics command to insert animation into Beamer. Furthermore, if we need to include vector graphics in our Beamer, we'll need the tikz package as well. Let's load the necessary packages: \usepackage {animate}

  6. Beamer Presentations: A Tutorial for Beginners (Part 1 ...

    This five-part series of articles uses a combination of video and textual descriptions to teach the basics of creating a presentation using the LaTeX beamer package. These tutorials were first published on the original ShareLateX blog site during August 2013; consequently, today's editor interface (Overleaf) has changed considerably due to the ...

  7. Video in a Presentation

    Joined: Mon May 19, 2008 8:53 am. Video in a Presentation. Postby alex » Wed Mar 05, 2014 2:23 pm. A minimal example using the media9 package. Video files must be in FLV or H.264 (MP4) formats. \documentclass {beamer} \usepackage {media9} \begin {document} \begin {frame} {Video example}

  8. Animations, Sounds, and Slide Transitions

    14.1.2 Animations Created by Showing Slides in Rapid Succession ¶. You can create an animation in a portable way by using the overlay commands of the beamer package to create a series of slides that, when shown in rapid succession, present an animation. This is a flexible approach, but such animations will typically be rather static since it will take some time to advance from one slide to ...

  9. Embed a video in a LaTeX PDF document or Beamer presentation

    How to embed video into PDFs using a technique that does not rely on Flash. This technique works both in documents and presentations compiled using LaTeX. I ...

  10. LaTeX

    Hi this is just a little tutorial to show you how to insert a video into a latex file PDF presentation (beamer). Enjoy itDo not forget to install first the p...

  11. Embedding videos in beamer LaTeX

    Embedding videos in beamer LaTeX. Ask Question Asked 1 year, 4 months ago. Modified 1 year, 4 months ago. Viewed 2k times 3 I followed ... Embedding videos in Beamer presentation under Linux (Fedora 30) 1. Videos side by side on a beamer slide [\minipage] Hot Network Questions

  12. What do you use in your Beamer PDF presentations to include videos

    To start our presentation we need to set the document class to beamer . Next we'll select a theme using the \usetheme command; for our example we'll use the Boadilla theme. Just like any other ...

  13. Presentations with Beamer pt 1

    In this video series we're going to show you how to create a simple presentation in LaTeX using Beamer. In this first video we show you how to set up your pr...

  14. Add mp4 video on beamer presentation and play the viedo while

    I am using the following code to embed an mp4 to a beamer presentation: \documentclass{beamer} \mode<presentation> { \usetheme{Madrid} \usepackage{multimedia} \usepackage{tikz} } \usepackage{graphicx} % Allows including images \usepackage{booktabs} % Allows the use of \toprule, \midrule and \usepackage{graphicx} \usepackage{multimedia} \begin{document} %----- % PRESENTATION SLIDES ...

  15. How to insert videos?

    To insert a video…. Copy the URL of your selected video. Beamer is compatible with YouTube, Vimeo, Loom, Wistia, Vidyard, Instagram and more than a 1000 other apps. While creating or editing a post, click on the insert media button (add_circle) at the left of the editor. Select video as the type of media, by clicking on the insert video button.

  16. How to insert videos?

    This is a quick tutorial video about how to insert videos in Beamer posts. Learn more at our Help Center: https://www.getbeamer.com/help/how-to-insert-videos...

  17. pdftex

    First of all, others may not have your video. You can fix this by providing a link to a movie that others can use. So far, so good. But then there is no information on how you compile this file, and which viewer you use. OK, you could add that you use, say, pdflatex and Acrobat reader in full screen mode.