Tag Archives: Beamer

background image in LaTeX Beamer presentation

[This](http://mprnotes.wordpress.com/2009/08/14/changing-background-image-of-latex-beamer/) post shows how one can change the background image in a Beamer presentation: The above method spans the image to cover the entire page size. To include a smaller image and center it, do [this](http://tex.stackexchange.com/questions/26458/beamer-background-image-centered): (I asked this question on the [Tex.SX](http://tex.stackexchange.com/) since `\hspace{4.5cm}` works but `\vspace{4.5cm}` did not.)

Modify spacings in listing (itemize/enumerate) environments for LaTeX Beamer

I don’t usually worry about display options in LaTeX since it does a good job most of the time. However, when I write presentations using LaTeX [Beamer](http://latex-beamer.sourceforge.net/), I make use of the `itemize` and `enumerate` environments quite often to list ideas, and the default setting in most of the templates lack generous spacing between items read more »

Non-LaTeX presentations using org-mode – S5 and HTML5 slides

I recently had frustrations with presentations written using MS Powerpoint; I’m not even going to mention KeyNote as it is only available on a Mac. [LibreOffice](http://www.libreoffice.org/) is my WYSIWYG editor on my Linux machine for writing quick and nicely formatted content. I also have MS Office [installed](http://blog.nguyenvq.com/2010/07/23/705/) on my machine using [WINE](http://www.winehq.org/). I sometimes use read more »

spacing between items in itemize or enumerate environments (lists)

In LaTeX Beamer, I wanted to adjust the spacing between items in an `itemize` environment. [This](http://dcwww.camd.dtu.dk/~schiotz/comp/LatexTips/LatexTips.html) post shows how to do it for each individual `itemize` environment: To do it globally, one can use the `enumitem` environment per [this](http://tex.stackexchange.com/questions/12373/how-to-change-the-space-between-the-itemize-items-in-latex) post; one can actually change lots of feature using `enumitem`. However, it does not work with read more »

Poster presentation

I have to do a poster presentation, and I prefer to do it in LaTeX (as opposed to MS Powerpoint, Adobe InDesign/Pagemaker or [Scribus](http://www.scribus.net/)) because I don’t want to worry about formatting and I have existing code from LaTeX Beamer presentations and other tex files. [beamerposter](http://www-i6.informatik.rwth-aachen.de/~dreuw/latexbeamerposter.php) is probably the easiest after googling. To get started, read more »

Presentations/slideshows in a web browser using S5

I use [LaTeX Beamer](http://latex-beamer.sourceforge.net/) whenever I write a a presentation because 1. I’m familiar with LaTeX and want to keep up with the skillset, 2. I prefer to write in plain text, especially in emacs, and 3. I don’t have to spend time working on the how the presentation looks and just have to worry read more »

Custom background in LaTeX’s Beamer

In powerpoint or keynote, you can easily insert a background image in your slides. In Beamer, this can be done with little effort. I found instructions here. Just put the following in the preamble: \usebackgroundtemplate{ \includegraphics{Path to image} }

Inclusion of movies / animations / interactive plots in latex docs / beamer slides

Check out the movie15 package for including multimedia inside in Beamer slides. Some references are here, here, and here. Note that movies are currently playable in only Adobe Reader/Acrobat. Mac’s Preview and other pdf readers currently do not support it. However, I know hope support will be given in the near future.

Animation / Interactive plots in R for inclusion in html websites or latex documents (beamer)

Been wanting to do an interactive/animated plot like the one here for a while (go to the Taylor example). Sage looks like a good program to generate animated graphics, but R is my primary language of choice as a statistician. I don’t want to learn another language just for a single feature (although the other read more »