Tagged Questions
4
votes
4answers
335 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}
...
0
votes
0answers
136 views
beamer Boadilla ToC, total slide count [closed]
I have a strange problem.
I have a very simple presentation in beamer using the Boadilla theme.
The slide/total slides feature is nice; however, the total slide counter is not working (always shows ...
4
votes
1answer
130 views
How can I have Beamer number slides in a frame title?
More or less what it says on the tin: I want something like:
\frame{\somecounterforpagenumbers : My Title}
I assume there is a built in counter that I can reference here, but I'm not sure what it ...
6
votes
1answer
72 views
Beamer: suffix equivalent frametitles with a counter or index?
I wonder how to suffix equivalent frametitles with a counter or index. So for example, when I would have two slides with the same \frametitle (e.g. "Marvelous title"), it should result in
Marvelous ...
3
votes
3answers
221 views
Beamer overlays and counters: compiling loop
I tried to compile
\documentclass{beamer}
\usepackage[english]{babel}
\newcounter{xxslide}
\begin{document}
\begin{frame}
\addtocounter{xxslide}{2}
\visible<\value{xxslide}>{blabla}
...
7
votes
1answer
364 views
Accessing the current overlay number in beamer
For some beamer related code in one of my packages I need to access the current overlay number. I mean the internal number used for things like \only<1>{..}.
\only<1>{ Some internal ...
3
votes
1answer
477 views
Don't skip framenumbers in beamer in handout mode
Consider the following beamer example below. Is it possible to adjust this, that Frame 4 has framenumber 3 on the handout (and not 4 in my example). In other words the numbering in the handout should ...
3
votes
1answer
371 views
usage of \only with counter, pdfcomment and beamer class
I cannot manage to get the following command to work. I have a beamer presentation with several slides on a frame. Then I want to use the pdfcomment package to show some comments on the slides. ...
2
votes
1answer
218 views
Problems with counters and frame splitting commands and environments in beamer
Using the package gb4e for linguists in the beamer environment in combination with frame splitting commands \pause or environments overprint, I face the following problem: The number are "jumping" ...
1
vote
1answer
446 views
How to avoid beamer counter incrementing
In Latex beamer, I've created a handout environment for slides that are for the produced handout only (ie. not to be shown on the viewer). It looks like this:
\newenvironment{handout}[2][1]{
...
5
votes
1answer
737 views
Beamer overlay and counter
I have a counter that I want to use for the beamer \onslide command.
Using
\newcounter{coun}
%....
%
\onslide<\coun ->{ ....}
doesn't work. What is the correct way to do this?