From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Elston Subject: Re: error when exporting to pdf Date: Fri, 23 Apr 2010 10:51:21 -0700 Message-ID: <4BD1DE19.1000808@comcast.net> References: <8819.1272034836@gamaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O5N2P-0005Iu-G0 for emacs-orgmode@gnu.org; Fri, 23 Apr 2010 13:51:37 -0400 Received: from [140.186.70.92] (port=57531 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O5N2O-0005Hz-2D for emacs-orgmode@gnu.org; Fri, 23 Apr 2010 13:51:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O5N2M-0000Jg-CC for emacs-orgmode@gnu.org; Fri, 23 Apr 2010 13:51:35 -0400 Received: from qmta06.emeryville.ca.mail.comcast.net ([76.96.30.56]:52732) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O5N2M-0000JQ-2f for emacs-orgmode@gnu.org; Fri, 23 Apr 2010 13:51:34 -0400 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Buck, Once I installed beamer I was able to run pdflatex to produce the presentation without error. What do you get when you run either latex or pdflatex? Mark On 4/23/2010 9:12 AM, Buck Brody wrote: > Nick, > > I have pasted the tex file below. Thanks for your help. > > Buck > > % Created 2010-04-23 Fri 12:11 > \documentclass[presentation]{beamer} > \usetheme{Madrid}\usecolortheme{default} > \usepackage[latin1]{inputenc} > \usepackage[T1]{fontenc} > \usepackage{graphicx} > \usepackage{longtable} > \usepackage{float} > \usepackage{wrapfig} > \usepackage{soul} > \usepackage{amssymb} > \usepackage{hyperref} > > > \title{Example Presentation} > \author{Carsten Dominik} > \date{23 April 2010} > > \begin{document} > > \maketitle > > \begin{frame} > \frametitle{Outline} > \setcounter{tocdepth}{3} > \tableofcontents > \end{frame} > > > \section{This is the first structural section} > \label{sec-1} > > \begin{frame} > \frametitle{Frame 1} > \framesubtitle{with a subtitle} > \label{sec-1.1} > \begin{columns}[t] > \begin{column}{0.5\textwidth} > \begin{block}{Thanks to Eric Fraga} > \label{sec-1.1.1} > > for the first viable beamer setup in Org > \end{block} > \end{column} > \begin{column}{0.5\textwidth} > \begin{block}<2->{Thanks to everyone else} > \label{sec-1.1.2} > > for contributing to the discussion > \end{block} > \end{column} > \end{columns} > \end{frame} > \begin{frame} > \frametitle{Frame 2} > \framesubtitle{Like 1, but now with explicit columns} > \transblindsvertical[duration=1] > \label{sec-1.2} > \begin{columns} % columns > \label{sec-1.2.1} > \begin{column}{0.5\textwidth} > \label{sec-1.2.1.1} > \begin{block}{Thanks to Eric Fraga} > \label{sec-1.2.1.1.1} > > for the first viable beamer setup in Org > \end{block} > \end{column} > \begin{column}{0.5\textwidth} > \label{sec-1.2.1.2} > \begin{block}<2->{Thanks to everyone else} > \label{sec-1.2.1.2.1} > > for contributing to the discussion > \end{block} > \end{column} > \end{columns} > \end{frame} > \begin{frame} > \frametitle{Frame 2} > \framesubtitle{where we will not use columns} > \label{sec-1.3} > \begin{itemize} > > \item Request\\ > \label{sec-1.3.1}% > Please test this stuff! > \end{itemize} % ends low level > \end{frame} > > \end{document} >