From mboxrd@z Thu Jan 1 00:00:00 1970 From: RC Subject: Re: Latex export to documentclass beamer Date: Sun, 9 Aug 2009 15:45:08 +0000 (UTC) Message-ID: References: <817D4333-B995-4A39-8DC3-CF621B987660@gmail.com> 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 1MaAaP-0005q1-Ft for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 11:45:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MaAaK-0005lA-6d for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 11:45:28 -0400 Received: from [199.232.76.173] (port=59302 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MaAaK-0005l7-0c for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 11:45:24 -0400 Received: from main.gmane.org ([80.91.229.2]:37576 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MaAaJ-0001BW-AY for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 11:45:23 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MaAaF-0005pO-8H for emacs-orgmode@gnu.org; Sun, 09 Aug 2009 15:45:19 +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 15:45:19 +0000 Received: from recif by vpn.eng.fsu.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 09 Aug 2009 15:45:19 +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 Carsten Dominik gmail.com> writes: > > > On Aug 9, 2009, at 3:05 PM, RC wrote: > > > 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 > > ... > For this line to be working, the variable must have been defined. > Either precede the code with > (require 'org-latex) > or wrap it into > (eval-after-load "org-latex" '(add-to-list....)) > - Carsten Thanks! That worked. I had a a couple more questions about using latex-export. 1. * Slide 5 \uncover<2-> {appear from slide 2 on\\ } \uncover<3-4> {appears from 3 to slide 4\\ } \uncover<4>{appears on slide 4\\ } \uncover<3->{appears from slide 3 on\\ } gets output as: \begin{frame}\frametitle{Slide 5} \label{sec-5} \uncover<2-> \{appear from slide 2 on\\ \} \uncover<3-4> \{appears from 3 to slide 4\\ \} \uncover<4>\{appears on slide 4\\ \} \uncover<3->\{appears from slide 3 on\\ \} \end{frame} Is there a way to avoid { and } being output as \{ and \} , respectively. 2. Is there a way to add an attribute to latex lists (itemize, enumerate, description} so that: * Slide 1 - x - y - z gets output as: \begin{itemize}[<+->] \item x \item y \item z \end{itemize} Thanks again for the help, and the invaluable org-mode. RC