From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: how to insert fraction & integration Date: Fri, 28 Sep 2012 00:37:59 +0200 Message-ID: <87d3175by0.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:49280) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THMiT-0002Dw-DU for emacs-orgmode@gnu.org; Thu, 27 Sep 2012 18:37:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THMiS-0002Vy-2Z for emacs-orgmode@gnu.org; Thu, 27 Sep 2012 18:37:57 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:46671) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THMiR-0002Vt-Om for emacs-orgmode@gnu.org; Thu, 27 Sep 2012 18:37:55 -0400 Received: by wibhj13 with SMTP id hj13so3274776wib.12 for ; Thu, 27 Sep 2012 15:37:54 -0700 (PDT) In-Reply-To: (Supriya Sawant's message of "Thu, 27 Sep 2012 18:23:50 +0530") 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: Supriya Sawant Cc: emacs-orgmode@gnu.org Hi Supriya, Supriya Sawant writes: > how to insert fraction & integration in emacs .org file > > eg. test.org >   > \frac{1}{2} > \sqrt{x^2-1} > > when I export it into html using org-export-as-html it gives > > test.html > > \frac{1}{2} > \sqrt{x^2-1} > > I am new to org-mode. > can anyone tell me whether I am inserted equation in right way??  Use the LaTeX syntax directly: $...$ to inline them and $$...$$ to center them in the page. This works both in LaTeX and HTML. #+TITLE: Test $\frac{1}{2}$ and $\sqrt{x^2-1}$ or $$\frac{1}{2}$$ $$\sqrt{x^2-1}$$ HTH, -- Bastien