% use the foils document class, with large fonts and landscape orientation
\documentclass[30pt,landscape]{foils}

% setup the page geometry for landscape and use maximum screen real estate
\usepackage[pdftex]{geometry}
\geometry{headsep=2.0em,hscale=0.80}

% normal LaTeX stuff
\title{\Large A Simple Example Presentation}
\author{Brian P. Gerkey}
\date{\today}

% the contents of \MyLogo are placed at the bottom center on the title slide
% and in the bottom left of other slides
\MyLogo{Simple Talk}

\begin{document}

\maketitle

% the \foilhead command starts a new page and centers a title line with the
% text provided
\foilhead{A Simple Slide}
\noindent
Here is a standard bulleted list:
\begin{itemize}
\item this is an item
\item so is this
\item yet another one
\end{itemize}

\end{document}

