emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] how to insert fraction & integration


From: Bastien
Subject: Re: [O] how to insert fraction & integration
Date: Fri, 28 Sep 2012 00:37:59 +0200
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.50 (gnu/linux)

Hi Supriya,

Supriya Sawant <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]