Questions tagged [beamer]

Beamer is a LaTeX class for creating presentations.

Unless related to programming (e.g., the automated generation of source code from another programming language), almost all questions about Beamer and in general are better asked on TeX SE.

544 questions
11
votes
2 answers

How can I use latex packages in R markdown beamer?

I want to include latex packages in R markdown pdf and beamer. Could you help me in including usepackage command in rmarkdown beamer file? Thanks a lot.
ilker_arslan
  • 637
  • 3
  • 7
  • 17
11
votes
2 answers

How to end a header 3 box in rmarkdown beamer madrid presentation?

When using the Madrid beamer theme (and some others) the Header 3 is rendered as a box covering the whole section, but in markdown the header is only specified at the start. How can I specify the end of the section? In the example below, I want the…
Corvus
  • 7,548
  • 9
  • 42
  • 68
10
votes
2 answers

Problem creating a lstnewenvironment that starts/ends another environment

I am currently using Beamer and the listing package to pretty-print code into Beamer blocks. So what I'm doing looks like : \begin{block}{} \begin{lstlisting} int foobar(void) { return 0; } \end{lstlisting} \end{block} Now, I find it cumbersome to…
Thomas Petazzoni
  • 5,636
  • 17
  • 25
10
votes
2 answers

RStudio Pandoc Beamer add \frame options

I would like to be able to pass frame options to beamer via RStudio-Rmarkdown-Pandoc-Beamer path. This would allow to take advantage of beamer's options to suppress frames from being printed. Beamer allows the…
JAllen
  • 638
  • 6
  • 18
10
votes
2 answers

latex beamer: prevent showing the TOC at one occasion

Normally I use \AtBeginSection[] { \begin{frame}{Gliederung} \tableofcontents[currentsection] \end{frame} } in my preamble to achieve that before a new sections starts the TOC is shown with the now starting section highlighted. In…
cknoll
  • 2,130
  • 4
  • 18
  • 34
10
votes
3 answers

Beamer presentation RStudio change font size for chunk

I am using Knit PDF to compile a beamer presentation in RStudio. --- title: "A.P. Statistics" author: "Notes for Chapter 3.Rmd" date: "Monday, October 13, 2014" output: beamer_presentation --- ## Computer…
David
  • 981
  • 1
  • 15
  • 27
10
votes
3 answers

Remove the slide count from Beamer footer

I would like to remove the slide count (e.g., SLIDE_NUMBER / TOTAL_SLIDES) from the footer (footline) of a Beamer presentation, without removing the footer entirely. I am using the Boadilla theme, which uses the infolines outer theme. In the…
gotgenes
  • 38,661
  • 28
  • 100
  • 128
9
votes
1 answer

Can I go to another frame during an itemization with LaTeX Beamer?

Basically I want to do something like this: \begin{frame}{Frame 1} \begin{itemize} \item A \pause \item B \pause \item C \pause \showsubframe % continue here \item D \pause \item E \pause …
Jordi
  • 5,846
  • 10
  • 40
  • 41
9
votes
2 answers

Custom formatting of LaTeX (beamer) frames in Vim using the gq command

I want to be able to use the gq key combination in Vim to format the text in my Beamer LaTeX slides. For example, I'd like gqap to transform this: \begin{frame}{Some title} \begin{itemize}\item first point \item second point \item etc. point…
Jeromy Anglim
  • 33,939
  • 30
  • 115
  • 173
9
votes
1 answer

Latex Beamer: Only show subset of overlays in a frame

I have a few tikz pictures in a latex beamer presentation with lots of overlays that I want to display in multiple locations, but each time only a part of the steps. I want to avoid copying the tikz code and having to maintain multiple similar…
jf_
  • 3,099
  • 2
  • 13
  • 31
9
votes
1 answer

Side-by-side institutes in latex beamer title page

On the title page of my Beamer presentation, I have three authors, from two institutes. The authors get listed side-by-side, which is fine. Less fine is that the institutes get listed one on top of another in an oddly bulky column down the center.…
SuperElectric
  • 17,548
  • 10
  • 52
  • 69
9
votes
1 answer

Using a YAML header argument in knitr

I am making a set of slides using rmarkdown and the LaTeX option of outputting it to beamer. I have two templates I use in my slides - one specific for the LaTeX options, and one pandoc template that I have modified to account for some additional…
kristang
  • 557
  • 5
  • 17
9
votes
3 answers

Increase page numbers in LaTeX Beamer

in LaTeX Beamer, the total number of slides includes those that only contain the table of contents before each section/subsection, which increases the total number of slides unnecessarily. Is there any way to prevent this? In other words: I don't…
mefiX
  • 1,702
  • 3
  • 24
  • 39
9
votes
4 answers

markdown or markup to powerpoint?

I need to maintain some slides in both latex beamer and in powerpoint. (This is to make slides available for instructors elsewhere, too, 90% of which do not know how to use latex and are unwilling to learn it. and I am a latex guy on linux.) I…
ivo Welch
  • 2,427
  • 2
  • 23
  • 31
8
votes
2 answers

Show footnote only after a pause in beamer with R Markdown

I am making a Beamer presentation and I use pauses between contents of a single slide. I can't figure out how to show a footnote only after a pause. Here's an example: --- title: "" author: "" date: "" output: beamer_presentation bibliography:…
bretauv
  • 7,756
  • 2
  • 20
  • 57