From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Latex export & Prosper Presentation Date: Sat, 4 Oct 2008 18:36:27 +0200 Message-ID: <4D9CB01B-6D11-4D99-945B-D228445A4895@gmail.com> References: <20080926163357.GS11943@thinkpad.adamsinfoserv.com> Mime-Version: 1.0 (Apple Message framework v929.2) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KmA82-0004cu-Qk for emacs-orgmode@gnu.org; Sat, 04 Oct 2008 12:37:14 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KmA81-0004cO-6m for emacs-orgmode@gnu.org; Sat, 04 Oct 2008 12:37:14 -0400 Received: from [199.232.76.173] (port=36905 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KmA81-0004cK-2Q for emacs-orgmode@gnu.org; Sat, 04 Oct 2008 12:37:13 -0400 Received: from ik-out-1112.google.com ([66.249.90.183]:61510) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KmA80-0001ox-FD for emacs-orgmode@gnu.org; Sat, 04 Oct 2008 12:37:12 -0400 Received: by ik-out-1112.google.com with SMTP id c21so1370777ika.2 for ; Sat, 04 Oct 2008 09:37:10 -0700 (PDT) In-Reply-To: <20080926163357.GS11943@thinkpad.adamsinfoserv.com> 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: Russell Adams Cc: Org Mode List On Sep 26, 2008, at 6:33 PM, Russell Adams wrote: > I've gotten a basic export to Prosper working for a presentation I'm > writing to give this weekend. > > Here is the extra portion for .emacs: > (setq org-export-latex-classes (cons '("prosper" > "% BEGIN Prosper Defaults > \\documentclass[pdf, contemporain]{prosper} > \\usepackage[utf8]{inputenc} > \\usepackage[T1]{fontenc} > \\usepackage[colorlinks,linkcolor=blue]{hyperref} > % END Prosper Defaults > > " > ("\\begin{slide}{%s}" . "\\begin{slide}{%s}")) > org-export-latex-classes)) > > Unfortunately it doesn't appear that I can add a closure for the > slide, so a manual "\end{slide}" must go at the end of each. As a hack, until we get around to define a closure: I guess you could live with a single empty first slide? Then you can do ("\\end{slide}\n\\begin{slide}{%s}" . "\\end{slide}\n\\begin{slide} {%s}")) org-export-latex-classes)) And just put a single \begin{slide} at the beginning and a single \end{slide} at the end..... - Carsten