NCAR's Geophysical Statistics Project

Institute for Mathematics Applied to Geosciences Institute for Mathematics Applied to Geosciences

[laptop + LaTeX == Presentation]


Introduction

This page collects some examples and tips for producing a high-quality Portable Document Format (PDF) document that is formatted for displaying on an entire PC screen (with something like a 4:3 aspect ratio, the most common ratio). The obvious intent is to use the document for a PC-based presentation (most commonly, a laptop). With a PDF format file one can give a laptop presentation using the Acrobat viewer.

Since PDF supports "hyperrefs" etc., you should be able to navigate by following links. If you want to get terribly fancy, you can also add a navigation panel so you can zip right to the proper slide in response to the germane question ... The different packages mentioned here have different philosophies about how much of this functionality is supported, and with what amount of difficulty.




LaTeX to PDF -- via PDFLaTeX

[Introduction] [Simple example] [Figures] [Viewing]

Introduction

The one we seem to use most is PDFLaTeX. Many other standard versions of LINUX and UNIX include pdflatex as part of the standard Tex/LaTeX distribution.

PDFLaTeX results in a high-quality pdf document that is formatted for viewing on a PC screen or with a data projector. It directly converts LaTeX to pdf without creating an intermediate dvi file. The obvious intent is to use this file for giving a laptop-based seminar. However, this strategy allows for a printed version (handouts) to be made with minimal changes. Here are some examples written in LaTeX, (with a few extra commands), and a description of how to prepare figures and how to view (present) it. Finally, we note one advantage of PDFLaTeX is that it can incorporate several types of graphics images including jpg and png formats.

A Simple Example

The text file talk.tex is a short example that has most of the elements that are used for seminar overhead slides. To try this out, and transfer all the files: from the directory Example

And then (in UNIX/LINUX):

pdflatex talk

will create the file talk.pdf and can be viewed by acroread (the free Acrobat reader) or the Linux viewer xpdf.

Some LaTeX tips

Figures

Use the /includegraphics command and refer to the example to see how it used. It appears to be standard and more flexible than the psfig command. Unfortunately, ps figures can not be directly included under pdflatex, but see the conversion tips below.

We recommend that one draws the figures directly in png, pdf or jpeg format rather create later problems with the conversions from postscript to another format.

At this point, I know of no package available for Windows and Unix/Linux that can incorporate animations/movies. Generally, I have the animation "ready" and simply minimize acroread for a moment, show the animation, and continue.

Creating pdf format figures

Here are some suggestions to convert postscript files or to create plots in R with the intent of including them in your talk.

Creating jpeg format figures

These are great to reduce the size of images. However, typically text is not reproduced well. In UNIX use

convert  -quality 100 fig1.ps fig1.jpg

A more interactive tool for conversion is xv. Setting the quality less than 100 (even just 99) will usually produce a much smaller file but with some loss of clarity. R also has a jpeg function to create jpeg figures directly.

Viewing or giving a presentation

The pdf file that is produced can be viewed easily using Abode Acrobat this is acroread in UNIX/LINUX.



Last modified: Dec 15 2006