From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Martins Subject: Re: Beamer support - 2nd round Date: Fri, 4 Dec 2009 22:04:41 -0200 Message-ID: <6ac505ad0912041604l5f0503fbx5b5e7809240f467e@mail.gmail.com> References: <87ljhi1tbo.wl%ucecesf@ucl.ac.uk> <6ac505ad0912041531h1e2fbe46x9b06e67c222dd265@mail.gmail.com> <10441.1259970303@alphaville.usa.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NGi8l-0001b0-KU for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 19:04:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NGi8g-0001RL-Ll for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 19:04:46 -0500 Received: from [199.232.76.173] (port=53689 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NGi8g-0001RE-G6 for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 19:04:42 -0500 Received: from mail-qy0-f196.google.com ([209.85.221.196]:34165) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NGi8g-0004dd-2E for emacs-orgmode@gnu.org; Fri, 04 Dec 2009 19:04:42 -0500 Received: by qyk34 with SMTP id 34so1512178qyk.14 for ; Fri, 04 Dec 2009 16:04:41 -0800 (PST) In-Reply-To: <10441.1259970303@alphaville.usa.hp.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: nicholas.dokos@hp.com Cc: Carsten Dominik , emacs-orgmode Mode Thank you very much I did everything you suggested and everything worked nicely But even using load-libray org-latex and org-beamer I received Loading /home/daniel/emacs-lisp/org-mode/lisp/org-beamer.el (source)...done Loading /home/daniel/emacs-lisp/org-mode/lisp/org-latex.el (source)...done Select command: Exporting to LaTeX... or: No definition for class `beamer' in `org-export-latex-classes' 2009/12/4 Nick Dokos : > Daniel Martins wrote: > >> Stupid question 9but I could not answer it) >> >> >> I have to set up >> >> (add-to-list 'org-export-latex-classes >> =A0 =A0 =A0 =A0 =A0 =A0 =A0'("beamer" >> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0"\\documentclass[11pt]{beamer} >> ...) >> >> ??? >> > > No. > >> >> Or I have to imput another .el which sets org-export-latex-classes corre= ctl=3D >> 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 th= is: > > $ git branch -r > =A0origin/HEAD > =A0origin/add-recursion-to-org-publish > =A0origin/beamer > =A0origin/emacs23 > =A0origin/experimental > =A0origin/experimental-code-for-the-new-export-engine > =A0origin/master > =A0origin/mobile-support > =A0origin/org-plot-doc > =A0origin/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 >