From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: LaTeX export for numbered equations Date: Mon, 04 Jun 2012 02:14:39 -0400 Message-ID: <19536.1338790479@alphaville> References: <80pq9grt77.fsf@somewhere.org> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SbQaM-0004Nr-Gr for emacs-orgmode@gnu.org; Mon, 04 Jun 2012 02:16:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SbQaK-0001dA-QO for emacs-orgmode@gnu.org; Mon, 04 Jun 2012 02:16:14 -0400 Received: from g1t0027.austin.hp.com ([15.216.28.34]:21842) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SbQaK-0001ZW-LN for emacs-orgmode@gnu.org; Mon, 04 Jun 2012 02:16:12 -0400 In-Reply-To: Message from "Sebastien Vauban" of "Sun, 03 Jun 2012 23:17:32 +0200." <80pq9grt77.fsf@somewhere.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Sebastien Vauban Cc: emacs-orgmode@gnu.org Sebastien Vauban wrote: > Hello, > > I'm trying to get numbered equations in Beamer, hence using the begin_equation > block, but the formula is not correctly translated to LaTeX, and I have no > clue why... > > Here an ECM: > ... > - These should be numbered: > > #+begin_equation > \frac{1}{\sqrt{2\pi\sigma^2}}e^{ -\frac{(x-\mu)^2}{2\sigma^2} } > #+end_equation > > #+begin_equation > \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{(x-\mu)^2}{2\sigma^2}} > #+end_equation > ... The following workaround seems to be effective in both of these cases: #+begin_equation #+LATEX: \frac{1}{\sqrt{2\pi\sigma^2}}e^{ -\frac{(x-\mu)^2}{2\sigma^2} } #+end_equation Nick