From mboxrd@z Thu Jan 1 00:00:00 1970 From: RC Subject: Latex export to documentclass beamer Date: Sun, 9 Aug 2009 13:05:25 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ma85v-0005iy-BR for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 09:05:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ma85p-0005im-Q5 for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 09:05:49 -0400 Received: from [199.232.76.173] (port=42236 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ma85p-0005ij-IR for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 09:05:45 -0400 Received: from mx20.gnu.org ([199.232.41.8]:24823) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Ma85p-0002jh-0E for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 09:05:45 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ma85n-0007ES-ED for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 09:05:43 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Ma85h-0000Sf-BX for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 13:05:37 +0000 Received: from vpn.eng.fsu.edu ([146.201.29.68]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 09 Aug 2009 13:05:37 +0000 Received: from recif by vpn.eng.fsu.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 09 Aug 2009 13:05:37 +0000 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 Hi, Following an earlier suggestion on the list: http://thread.gmane.org/gmane.emacs.orgmode/15010/focus=15077 I added the following to my .emacs file: (add-to-list 'org-export-latex-classes '("beamer" "\\documentclass[11pt]{beamer} \\usepackage[utf8]{inputenc} \\usepackage[T1]{fontenc} \\usepackage{amsmath,amssymb,graphicx,bm,multirow,colortbl,vector} \\usepackage{hyperref} \\usepackage{verbatim} \\setbeameroption{show notes} \\usetheme{Goettingen} \\useoutertheme{infolines}" ("\\begin{frame}\\frametitle{%s}\\begin{itemize}" "\\end{itemize}\\end{frame}" "\\begin{frame}\\frametitle{%s}\\begin{itemize}" "\\end{itemize}\\end{frame}") ("\\item{%s}" . "\\item*{%s}"))) However, this gives me the error: Debugger entered--Lisp error: (void-variable org-export-latex-classes) I am using Emacs 23.1 and org-mode 6.29trans in Windows Vista. Any suggestions to fix the error are appreciated. RC