From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: LaTeX export for numbered equations Date: Mon, 4 Jun 2012 15:41:27 +0200 Message-ID: <5FA2B409-CE92-4C40-979B-0612351424DE@gmail.com> References: <80pq9grt77.fsf@somewhere.org> <19536.1338790479@alphaville> Mime-Version: 1.0 (Apple Message framework v1278) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40589) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SbXXT-0000eL-RM for emacs-orgmode@gnu.org; Mon, 04 Jun 2012 09:41:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SbXXK-0003LE-5V for emacs-orgmode@gnu.org; Mon, 04 Jun 2012 09:41:43 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:45202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SbXXJ-0003K8-Tf for emacs-orgmode@gnu.org; Mon, 04 Jun 2012 09:41:34 -0400 Received: by wibhm14 with SMTP id hm14so2108107wib.12 for ; Mon, 04 Jun 2012 06:41:30 -0700 (PDT) In-Reply-To: <19536.1338790479@alphaville> 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: nicholas.dokos@hp.com Cc: Sebastien Vauban , emacs-orgmode@gnu.org On 4.6.2012, at 08:14, Nick Dokos wrote: > Sebastien Vauban wrote: >=20 >> Hello, >>=20 >> 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... >>=20 >> Here an ECM: >> ...=20 >> - These should be numbered: >>=20 >> #+begin_equation >> \frac{1}{\sqrt{2\pi\sigma^2}}e^{ -\frac{(x-\mu)^2}{2\sigma^2} } >> #+end_equation >>=20 >> #+begin_equation >> \frac{1}{\sqrt{2\pi\sigma^2}}e^{-\frac{(x-\mu)^2}{2\sigma^2}} >> #+end_equation >> ...=20 >=20 > The following workaround seems to be effective in both of these cases: >=20 > #+begin_equation > #+LATEX: \frac{1}{\sqrt{2\pi\sigma^2}}e^{ = -\frac{(x-\mu)^2}{2\sigma^2} } > #+end_equation You just use \begin{equation} \frac{1}{\sqrt{2\pi\sigma^2}}e^{ -\frac{(x-\mu)^2}{2\sigma^2} } \end{equation} Entire LaTeX environments should be automatically protected and passed through for LaTeX export. - Carsten >=20 > Nick >=20 >=20