From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Latex export to documentclass beamer Date: Mon, 10 Aug 2009 13:46:49 +0200 Message-ID: <987B84F2-277F-49D1-94EB-E795C03C1DF4@gmail.com> References: <817D4333-B995-4A39-8DC3-CF621B987660@gmail.com> Mime-Version: 1.0 (Apple Message framework v936) 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 1MaTLB-0006lG-2i for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 07:47:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MaTL5-0006kB-Jg for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 07:46:59 -0400 Received: from [199.232.76.173] (port=35087 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MaTL5-0006k8-BJ for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 07:46:55 -0400 Received: from mail-ew0-f211.google.com ([209.85.219.211]:50524) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MaTL4-0007VJ-Se for emacs-orgmode@gnu.org; Mon, 10 Aug 2009 07:46:55 -0400 Received: by ewy7 with SMTP id 7so3224294ewy.42 for ; Mon, 10 Aug 2009 04:46:54 -0700 (PDT) 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: RC Cc: emacs-orgmode@gnu.org On Aug 9, 2009, at 5:45 PM, RC wrote: > 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\\ } You can warp this code in #+begin_latex ... #+end_latex > > 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} No. - Carsten