From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Beamer support - 2nd round Date: Fri, 04 Dec 2009 18:45:03 -0500 Message-ID: <10441.1259970303@alphaville.usa.hp.com> References: <87ljhi1tbo.wl%ucecesf@ucl.ac.uk> <6ac505ad0912041531h1e2fbe46x9b06e67c222dd265@mail.gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NGhqo-0005VK-Lw for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 18:46:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NGhqk-0005Mm-SN for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 18:46:14 -0500 Received: from [199.232.76.173] (port=43813 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NGhqk-0005Ma-Nh for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 18:46:10 -0500 Received: from g5t0008.atlanta.hp.com ([15.192.0.45]:11142) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NGhqk-0002cG-Dt for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 18:46:10 -0500 In-Reply-To: Message from Daniel Martins of "Fri, 04 Dec 2009 21:31:30 -0200." <6ac505ad0912041531h1e2fbe46x9b06e67c222dd265@mail.gmail.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: Daniel Martins Cc: Carsten Dominik , emacs-orgmode Mode Daniel Martins wrote: > Stupid question 9but I could not answer it) > > > I have to set up > > (add-to-list 'org-export-latex-classes > '("beamer" > "\\documentclass[11pt]{beamer} > ...) > > ??? > No. > > Or I have to imput another .el which sets org-export-latex-classes correctl= > y? > > I sue the latest git version of org-mode 6.33trans and > I tried to use the example but I couldn't Are you using git to keep up to date with org-mode? If not, then afaict, you cannot get it yet. If you are using git, you can do something like this: $ git branch -r origin/HEAD origin/add-recursion-to-org-publish origin/beamer origin/emacs23 origin/experimental origin/experimental-code-for-the-new-export-engine origin/master origin/mobile-support origin/org-plot-doc origin/support-for-mobile-sync you can see there is a remote branch called origin/beamer. You can create a local tracking branch with $ git branch beamer origin/beamer and check it out: $ git checkout beamer If you then look in lisp/org-latex.el, you should see the beamer stuff. HTH, Nick