> \[\begin{array}{c}This isn't correct syntax: "\begin{array}{|c|c|c|}...\end{array}" is
> \begin{array}{|c|c|c|}
> \hline
> \delta_{1} & 0 & 1 \\
> \hline
> p & \{p, q\} & \{q\} \\
> \hline
> q & \{r\} & \{q, r\} \\
> \hline
> r & \{s\} & \{p\} \\
> \hline
> s & \{s\} & \{p\} \\
> \hline
> \end{array}
> \]
parsed as a latex environment, so it breaks the paragraph you started
the line before. You can use "\begin{equation}" instead of "\[".
> - \(\min(x,y)\) , \(\max(x,y)\)The last line is not correctly indented: it doesn't belong to the last
> - \(\operatorname{Prime}(x) = \left\{ \begin{array}{cl} 1 & \text{ if }
> x \text{ is prime } \\ 0 & \text{ if } x \text{ is not prime }
> \end{array} \right. \)
item and therefore, the math snippets is not recognized.
> 2 - Quoting of {} may also happen in unwanted places. If I write a complexYou cannot write raw non-math LaTeX in an Org buffer (unless it is also
> author line like :
>
> #+AUTHOR: \IEEEauthorblockN{Foo, Bar} \IEEEauthorblockA{ Somewhere\\ Over
> the Rainbow \\ Email: \{foo,bar\}@baz.fr } \and \IEEEauthorblockN{foobar}
> \IEEEauthorblockA{somewhere else \\ Email: foobar@baz.fr}
an entity). You ought to use export snippets, i.e., @@latex:...@@.
> Another related question also : did anybody managed to hilghlight LaTeXSee `org-highlight-latex-and-related'.
> equations inside org-mode ?