{overlays} is a term used by the {beamer} document class to describe the layering of slides.

learn more… | top users | synonyms (1)

3
votes
2answers
64 views

Avoiding repositioning of minipages when moving overlayed tikzpictures

I'm fairly new to Beamer and stuck with this problem of two tikzpictures lying above two minipages. i want tikz1 to be displayed on slide 2 of the frame and tikz2 on the next slide (3). However they ...
4
votes
1answer
49 views

Interference between \onslide and \setbeamercovered{transparent}

I'm trying to use \onslide in a table, but since I have the option \setbeamercovered{transparent} in the preamble, it does not produce the overlay of columns. Here is my example: ...
2
votes
1answer
48 views

How can I add or overlay a legend to an .eps image

Assume someone has several Matlab plots saved as .eps graphics and realizes in some of them the legend for the curves is missing. Is there a way to add these legends afterwards, or to overlay another ...
11
votes
2answers
125 views

Successively reveal tree bottom up

I am trying build a tree bottom up in a beamer document, i.e. to draw it on screen starting from the most deeply embedded leaves. I've found a lot of Q&As and discussions on how to have trees ...
4
votes
1answer
59 views

Beamer grey out items after pause

I'm making a presentation in Beamer and I've been having some trouble getting exactly the effect I want. I have three blocks, one that stretches across the entire width of the slide, and two that ...
1
vote
1answer
81 views

Using AtBeginSection and againframe to make custom section transitions

I am trying to make a custom slide to use as an inter-sectional slide in order to replace the more typical code: \AtBeginSection{ \begin{frame}[c,plain,noframenumbering] ...
10
votes
1answer
98 views

tikzmark position erratic in overprint environment of beamer

My aim is to highlight a term in an equation, and draw an arrow pointing to another one. Here's my code \documentclass{beamer} \usepackage{tikz} ...
9
votes
2answers
245 views

Two code blocks working syncronously

I need two code blocks in my beamer frame. One will be the code and other will be the output for each line of code. I want to uncover each code line and corresponding output line. So, first it will ...
1
vote
0answers
61 views

Beamer: Visualize overlay borders in handout mode

I want to display the slide areas of a frame in handout mode. A possible solution could look like this: \begin{frame} % presentation mode On slide 1 \\ \pause On slide 2 \end{frame} ...
2
votes
1answer
66 views

LaTeX Beamer: How to uncover formulas/text at a location of an “un'uncovered” formula/text

I have a beamer presentation in latex where I want a formula to change its coloring schema over a couple of steps (The idea is to mark the "active" part of the formula at the given moment). When I ...
2
votes
1answer
60 views

Beamerpauses counter reset between environments inside an overlay?

I was reading the answer to this question Mixing overprint with blocks of enumerations [I recopy the code so you dont' have to follow the link] \documentclass{beamer} \usetheme{Warsaw} ...
27
votes
3answers
2k views

\subseteq + \circ as a single symbol (“open subset”)

I'm trying to create symbols \opn for "open subset" and \cls "closed subset". I want them to look like this: My current solution is: ...
6
votes
2answers
217 views

Beamer overlay box around text - the correct way?

I have something that "works," but I'm wondering if there's a more elegant solution. I want to box some text after an itemize in beamer, so this is what I'm doing: \documentclass{beamer} ...
3
votes
1answer
102 views

Continuing a TikZ animation with \onslide after a \foreach loop

I want to produce an animation in a tikzpicture environment in Beamer. The animation consists in a series of slides produced by combining \foreach and \onslide, which works fine. I then want to ...
0
votes
1answer
101 views

Beamer overlays - how to make things appear in different places? [closed]

So I just started using beamer and got introduced to the \pause command. But I want things to show up at different places on the screen, not necessarily from top to bottom. How to do that? ...
4
votes
2answers
79 views

How to keep the horizontal overlay area space constant while the contents are updated?

I have the following problem with overlays in LaTeX beamer. On the first slide I want to display while the second slide should show The difficulty is to achieve that the amount of space ...
7
votes
1answer
307 views

reference overlay numbers with names

I have two-column slides where there is a tikz figure on the left, and itemization on the right. There is >10 overlays due to pauses in the itemization, and some pieces of the tikz picture are ...
3
votes
1answer
68 views

Is it possible to implement a “label-goto”-like workflow in composing overlay?

I don't want to hardly code the value 6 in the following code as: I have to manually count the number of steps. The mechanism breaks when a block of code (\Atom in this example) is repeated in the ...
3
votes
1answer
114 views

Uncover parts of a tree in TikZ

I'm trying to apply Daniel's method to uncover the bottom right part of the tree in the following MWE. However, when I pass the option [visible on=<2->] to one of the children, it appears to ...
3
votes
2answers
101 views

Uncover items piecewise

I would like to uncover items piecewise, but have two items appear at the same time. I use the beameruserguide page 215 to do so as \documentclass{beamer} \begin{document} \frame{ ...
10
votes
3answers
2k views

How can I add text in the top right corner of a page _without_ using fancyhdr

I want to put a block of text into the top right corner of my document (which uses the article class). The specifications of the document's formatting are very detailed, and it has taken me about 2 ...
4
votes
1answer
68 views

Defining \nextslide in overprint environment in beamer

We all use the \onslide command inside the overprint environment in beamer. However, I find that assigning hard coded slide values, like \onslide<5> in this environment is really cumbersome. ...
4
votes
2answers
178 views

Adding shadow over image

I'm making a beamer presentation and I'd like to first show an image in its true form: and in the next slide have it shown with a shadow over a part of it like so: Is there a way to do this?
7
votes
1answer
427 views

How can I use overlays in beamer when producing graphs with dot?

I usually describe graphs with graphiz and I enjoy dot2tex which produces the corresponding TikZ code. To explain an algorithm in a presentation, I need to uncover the nodes and edges of a graph step ...
1
vote
1answer
1k views

Using image overlay simultaneously with text in multicolumn mode beamer

I have a beamer slide where I have an image changing along with the text in the next column. For example: \frame{\frametitle{testing cols} \begin{columns}[t] \column{5cm} \begin{itemize} \item On ...
5
votes
1answer
152 views

\overprint inside \itemize problem — shaky frames

I'm having troubles with a presentation. I want to create something like this \documentclass{beamer} \usepackage{ulem} % To strikeout text \begin{document} \begin{frame} \begin{itemize} ...
10
votes
2answers
907 views

Rolling bullet points in beamer

Often when I use beamer for slides I use an itemize environment with \pause to show off one bullet point at a time. Also, often all the points I want to show on a single slide does not fit and I need ...
5
votes
1answer
1k views

How to have nested list overlays without wobble

I'm trying to use overlays to reveal successive bullet points in an itemize environment. Each item contains its own second-level itemize environment, which will also be revealed one item at a time. ...
2
votes
2answers
274 views

Animate movement/transition of sections on a slide in Beamer?

I'm not sure if this is even possible with the current PDF format specification, but I'd like to animate transitions between slide or between slide overlays by having part of the slide move or "fly" ...
1
vote
1answer
123 views

Transparent table captions when using onslide with overprint and setbeamercovered{invisible}

The following works correctly in that the right table is shown at the right time, and all alignment works as expected. The only issue is that while the table body is shown as normal, the table ...
25
votes
2answers
6k views

How to make beamer overlays with Tikz node

I have a diagram of 4 nodes in my beamer slide. \begin{figure}[h] \begin{centering} \begin{tikzpicture}[system/.style={draw,rectangle,rounded corners=3,minimum width=2cm,text width=1.8cm,text ...
3
votes
1answer
118 views

problems with pgfplots/ymax

I have two figures that I'd like to connect; both are generated with pgfplots (and in this example, gnuplot). The following works exactly as expected: \documentclass{beamer} \usepackage{graphicx} ...
0
votes
0answers
54 views

beamer: My hyperlinks don't work when I add overlays [closed]

I'm preparing a presentation with beamer. I have a couple of hyperlinks in it but as soon as I add overlay specifications (either with \pause or \onslide<>) the hyperlink buttons don't work ...
1
vote
1answer
34 views

How can I fix the problem of \ref command when I have been used overlays in beamer

How can I fix the problem of \ref command when I have been used overlays in beamer? This problem appears to me when I use overlays. Here is an example \documentclass[notes=show,12pt]{beamer} ...
0
votes
1answer
92 views

Changing code in listings dynamically

I need to change dynamically the code in the listing by adding just one key word to the code. I tried to do it like this: \begin{lstlisting}[escapechar=|] class MyThread extends Thread { private ...
28
votes
2answers
675 views

An Example from the Microtype Documentation

While exploring the depths of the microtype package with regard to LuaTeX I came across this innocent looking page 18 from the microtype.pdf 2.5 beta-08. As the blue note in the margins hints a ...
0
votes
0answers
179 views

beamer: overlay graphics after pause [closed]

I have the following MWE: \documentclass{beamer} \begin{document} \begin{frame}{Verkette Liste Beispiel}{} Hi! \pause Hi again! \begin{figure} ...
6
votes
1answer
495 views

Tikz: overlay png or pdf image over another pdf figure

I am newbie in Tikz. I would like to place a png or pdf image on another pdf figure using Tikz overlay.Unfortunately i don't have any Tikz code for both the figures. I have looked at this answer ...
2
votes
1answer
326 views

\xrightarrow: position of text over an arrow should be lower

The following example of LaTeX code \documentclass[b4paper,oneside, final, 10pt]{article} \usepackage[english]{babel} \usepackage{charter} \usepackage{amsfonts} \usepackage{mathtools} ...
13
votes
2answers
1k views

Write text above other text

What I would like to do is to make corrections to a document- to cross out some text using the ulem package and then to put the "correct" answer above it. e.g. ...
5
votes
2answers
272 views

TikZ: node at \item to use in [overlay]

In my beamer presentation I would like to reference an item by pointing an arrow on it's number. However, I don't know how to make \item a TikZ node. Otherwise it works well. \documentclass{beamer} ...
4
votes
4answers
312 views

Beamer: uncovering itemize so the first slide shows no items at all

How can I achieve in beamer that the first slide of each frame is void (that is, only displays the frametitle)? Suppose I have the following frame: \frame{\frametitle{Title} \begin{itemize} ...
1
vote
2answers
88 views

How can I replace a box of text with beamer?

I currently have this piece of text for a quiz: \begin{frame}{Quiz} \begin{block}{Frage} With generics the compiler has more information about the types of the objects, so ...
3
votes
0answers
219 views

I want a slide deck as dense as a chalk board in a real lecture. How do I get Beamer-style overlays without Beamer? [closed]

I've decided I'm fed up with the standard Powerpoint-esque slide decks and want to instead produce slides for my math talks that look like what I might produce giving a "chalk talk". In particular, ...
3
votes
1answer
135 views

Circling/framing and referring to a bunch of nodes

The end goal: drawing paths between nodes like in the example there but the difference is the nodes are inside a picture here and in particular, the other node is a bunch of nodes in the same picture. ...
2
votes
1answer
86 views

How to display a visual marker on the last overlay

Is it possible to display a visual "marker" on the last overlay of every frame? I want to know when an overlay "ends" before I go to the next frame.
2
votes
1answer
646 views

Table overlay in beamer on multiple rows

I want to include a table in my presentation (beamer) and this table has 2 panels. I want to first show the first panel and then the second panel, I have been trying to do it unfortunately without any ...
3
votes
1answer
293 views

Beamer: vertically center picture inside overlayarea

Is there an easy way to vertically center a picture inside an overlayarea environment? Here is a MWE of a small animation: \documentclass{beamer} \begin{document} \begin{frame} \begin{columns} ...
6
votes
2answers
236 views

How to determine the height of a beamer block?

To keep content from jumping between slides in a beamer presentation, I would like to use an overlayarea environment. By trial and error, one can determine the appropriate amount of space to reserve. ...
6
votes
2answers
287 views

Uncover segments of a TikZ path in Beamer

I have a question about uncovering segments of a TikZ path in Beamer? As a simple example, consider the following path made up of a horizontal and a vertical segment. \begin{tikzpicture} ...

1 2 3 4