Hey Seb, On Mon, Jun 4, 2012 at 9:41 AM, Sebastien Vauban <wxhgmqzgw...@spammotel.com> wrote: > Hi Nick, > > Nick Dokos wrote: >> Sebastien Vauban <wxhgmqzgw...@spammotel.com> wrote: >> >>> 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 > > I confirm your workaround is working in my case as well -- I would never have > thought doing that. Thanks! >
I know it should work, but is there any particular reason you need to use #+begin_equation .. #+end_equation ? The following seems to work for me well. #+begin_latex \begin{equation} \frac{1}{\sqrt{2\pi\sigma^2}}e^{ -\frac{(x-\mu)^2}{2\sigma^2} } \end{equation} #+end_latex If you want fontlocking you can even use #+begin_src latex :eval yes \begin{equation} \frac{1}{\sqrt{2\pi\sigma^2}}e^{ -\frac{(x-\mu)^2}{2\sigma^2} } \end{equation} #+end_src -- Suvayu Open source is the future. It sets us free.